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
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;
How will you free the allocated memory
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;
Bit fields CANNOT be used in union.
What will be the output of the program #includestdio.hint main() char str[] = Nagpur; str[0]='K'; printf(s, , str); str = Kanpur; printf(s, str+1); return 0;