Question: What does the argv[0] represent?
A
B
C
D
E
The first command line parameter has been passed to the program
B
The program name
C
The number of command line arguments
D
None
E
All
Note: Not available
void main() { char arr1[] = "REGALINT"; char arr2[10] = "REGALINT"; printf("%d,",sizeof(arr1)); printf("%d",sizeof(arr2)); }
#include <assert.h> main() { int n = 5; assert(n > 3); //statement 1 n = n+2; assert(n > 7);//statement 2 return 0; }
int array[][3] = { {1,2}, {2,3}, {3,4,2} };
int i = 4, *j, *k;Which one of the following statements will result in Compilation error?
main() { enum {red, green, blue = 0, white}; printf("%d %d %d %d", red, green, blue, white); return 0; }