C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 1 0 3 Garbage Value 2 1 0 3 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 9 Error 6 None of these 5 9 Error 6 None of these 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 5 0 6 Compiler Error 7 5 0 6 Compiler Error 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope Local scope Function scope No scope at all File scope Block scope Local scope Function scope No scope at all File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 12 11 1 Error 12 11 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 4 16 64 None of These 4 16 64 None of These ANSWER DOWNLOAD EXAMIANS APP