Login
C Programming
1)
Bit fields CANNOT be used in union.
A)
True
B)
False
C)
32, 1, 12
D)
-64, 1, 12
Next
Show Answer:
Show Answer
More Question
The library function used to find the last occurrence of a character in a string is
Which of the following statements are correct about an array 1: The array int num[26]; can store 26 elements.2: The expression num[1] designates the very first element in the array.3: It is necessary to initialize the array at the time of declaration.4: The declaration num[SIZE] is allowed if SIZE is a macro.
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;
A preprocessor directive is a message from programmer to the preprocessor.
Which of the following statements are correct about the function long fun(int num) int i; long f=1; for(i=1; i=num; i++) f = f i; return f;