C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} 1 no error no output 0 complier error 1 no error no output 0 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} %d\n Error 300 None of These %d\n Error 300 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 12 10 11 13 22 11 11 11 22 12 12 13 22 14 12 13 22 13 14 14 12 10 11 13 22 11 11 11 22 12 12 13 22 14 12 13 22 13 14 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Block scope No scope at all Function scope Local scope File scope Block scope No scope at all Function scope Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An operating system An Editor None of these. A compiler An operating system An Editor None of these. A compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 Garbage Value 2 3 0 1 Garbage Value 2 3 0 ANSWER DOWNLOAD EXAMIANS APP