im like the subject im new to c im currently reading C for MeatHeads (eheh ok dumbies) and i followed the book and im using mircle c to write and compile but my first script (not counting hello world) wont work i followed the book and it jsut dont seem to get it why it doesnt work take a gander
#include <stdio.h>
void main()
{
char me[20];
printf("What is your name?"
scanf("%s",&me);
printf("Darn glad to meet you, %s!\n",me);
}
#include <stdio.h>
void main()
{
char me[20];
printf("What is your name?"
scanf("%s",&me);
printf("Darn glad to meet you, %s!\n",me);
}