C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 2 1 2 2 1 2 1 1 2 1 2 2 1 2 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 24 36 30 32 40 24 36 30 32 40 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 Garbage Value 1 2 0 3 Garbage Value 1 2 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Iterative order Parallel order Random order Last In First Out order First In First Out order Iterative order Parallel order Random order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? 6 Syntax error 8 Runtime error No output 6 Syntax error 8 Runtime error No output ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 0 None of these Garbage Value 5 6 0 None of these Garbage Value 5 6 ANSWER DOWNLOAD EXAMIANS APP