C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 0 1 0 0 1 1 1 0 None of these 0 1 0 0 1 1 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An Editor A compiler None of these. An operating system An Editor A compiler None of these. An operating system ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello garbage value Error None of These hello 5 hello garbage value Error None of These hello 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? None of these Exam_veda Examians Both A and B Exam veda None of these Exam_veda Examians Both A and B Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} None of These P M N None of These P M N ANSWER DOWNLOAD EXAMIANS APP