Hello, ALl!
Please, I am reading the tutorial and I don't understand what is the meaning of 79 in next expression:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
[/c/* scanf example */
#include <stdio.h>
int main ()
{
char str [80];
int i;
printf ("Enter your family name: ");
scanf ("%79s",str);
return 0;
}
|
Last edited on