guys i need some help
i have dis program wch i took from dey net for my project n i'm not gud at c++ o as wonderin if ne1could help me out wid dis part of d for loop wch goes like
for(i=270;i<271;i++)
{
outtextxy(190,270,"OUR PROJECT");
}
i got no idea wat lt means n have seen it many source codes but nva understood wat it meant n also it shows it as an error also says;) both of dem are missin
It's a bit tough to tell what you are trying to say with that grammer.
I don't know what the < is for (maybe another language?). But what I can see is that your for loop has 3 semi-colons. It should have 2 semi-colons. The first spot should have what initially happens, the second spot should have the condition that will keep you in the loop and the last spot has what will happen at the end of the loop.