C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 4 64 16 None of These 4 64 16 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 100 g##g2 10012 Syntax error Runtime error 100 g##g2 10012 Syntax error Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd James Bjarne Stroustrup Gosling Dennis Ritchie Dr. F. Codd James Bjarne Stroustrup Gosling Dennis Ritchie Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error A c 65 Error A c 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by reference call by value call by value result None of these. call by reference call by value call by value result ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} 5 4 3 2 1 Infinite Loop 0 0 0 0 None of These 5 4 3 2 1 Infinite Loop 0 0 0 0 None of These ANSWER DOWNLOAD EXAMIANS APP