Login
C Programming
1)
The first argument to be supplied at command-line must always be count of total arguments.
A)
True
B)
False
C)
The code counts number of blank lines in the file
D)
The code counts number of lines in the file
Next
Show Answer:
Show Answer
More Question
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
If char=1, int=4, and float=4 bytes size, What will be the output of the program #includestdio.hint main() char ch = 'A'; printf(d, d, d, sizeof(ch), sizeof('A'), sizeof(3.14f)); return 0;
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
va_list is an array that holds information needed by va_arg and va_end.
What is the output of the program typedef struct data; int x; sdata b;sdata;