C Programming Which of following is not a valid name for a C variable? Examians Exam veda Exam_veda Both A and B None of these Examians Exam veda Exam_veda Both A and B None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program?#include#define int char void main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} sizeof(i)=2 Compiler Error sizeof(i)=1 None of These sizeof(i)=2 Compiler Error sizeof(i)=1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} make an infinite loop None of These Some address will be printed Error make an infinite loop None of These Some address will be printed Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);} c=3 d=5 c=3 d=3 c=5 d=3 c=5 d=5 c=3 d=5 c=3 d=3 c=5 d=3 c=5 d=5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Error Garbage Value hi followed by garbage value h hi Error Garbage Value hi followed by garbage value h hi ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + || % ++ && + || % ++ && ANSWER DOWNLOAD EXAMIANS APP