C Programming The statement int **a; is illegal None of these. is legal but meaningless is syntactically and semantically correct is illegal None of these. is legal but meaningless is syntactically and semantically correct ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope Local scope No scope at all File scope Function scope Block scope Local scope No scope at all File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 2 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 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 hi friends hj grjeodt None of These ij!gsjfoet hi friends hj grjeodt None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 1 0 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} Infinite Loop 5 4 3 2 1 None of These 0 0 0 0 Infinite Loop 5 4 3 2 1 None of These 0 0 0 0 ANSWER DOWNLOAD EXAMIANS APP