C Programming Functions have .......... Block scope Function scope File scope No scope at all Local scope Block scope Function scope File scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} None of These Error Some address will be printed make an infinite loop None of These Error Some address will be printed make an infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=AMVEDA y=VEDA y=MVEDA y=EXAMIANS y=EDA y=AMVEDA y=VEDA y=MVEDA y=EXAMIANS y=EDA ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right II and IV II and III III and IV I and III I and II II and IV II and III III and IV I and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65486 65486, 65490 65486, 65488 65486, 65487 None of these 65486, 65486 65486, 65490 65486, 65488 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 14 11 13 12 Compilation error 14 11 13 12 ANSWER DOWNLOAD EXAMIANS APP