C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} 300 None of These Error %d\n 300 None of These Error %d\n ANSWER DOWNLOAD EXAMIANS APP
C Programming 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. 2, 4 1 1, 4 2, 3 None of these 2, 4 1 1, 4 2, 3 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} ij!gsjfoet None of These hj grjeodt hi friends ij!gsjfoet None of These hj grjeodt hi friends ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ || % + && ++ || % + && ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 6 7 8 9 5 6 7 8 9 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Infinite loop 0 0123456789 10 Syntax error Infinite loop 0 0123456789 10 Syntax error ANSWER DOWNLOAD EXAMIANS APP