In what programer language are computer games coded? - by borlee In what programer language are computer games coded? Read the article
gets (variable) - by borlee can anyone tell me why gets(abc) works with char[] but not with int? int abc; char name[] = "lolrofl"; printf("Hello %s.\n",name); printf("\n "); fflush(stdin); gets (abc); printf("\n die zahl ist %i.\n",abc); system("Pause"); return(0); Read the article
how can i store more than just one letter in a variable? - by borlee with char i get this error: .\main.cpp(6) : error C2015: too many characters in constant Read the article