C Programming Which of following is not a valid name for a C variable? Both A and B Exam veda Examians None of these Exam_veda Both A and B Exam veda Examians None of these Exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} None of These Error I love Examians I hate Examians None of These Error I love Examians I hate Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} 300 Error None of These %d\n 300 Error None of These %d\n ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Random Sequential Sequential and Random None of these Random Sequential Sequential and Random None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} None of These hello 5 Error hello garbage value None of These hello 5 Error hello garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} Garbage Value 000 444 433 333 Garbage Value 000 444 433 333 ANSWER DOWNLOAD EXAMIANS APP