Search found 1 match

by imonhf
Sat Apr 24, 2010 12:04 pm
Forum: Volume 102 (10200-10299)
Topic: 10267 - Graphical Editor
Replies: 190
Views: 77966

CE

Why my code is showing compilation error!
pls help
It shows no problem in code blocks!!!





// ACM 10267
//Written by imon
//24-04-10
#include<stdio.h>
#include<math.h>
char fld[255][255], c1, c2;

void func(int x, int y)
{
if(fld[x][y]==c2)
{
fld[x][y]=c1;
func(x-1, y-1);
func(x-1, y ...

Go to advanced search