C Programming Which of following is not a valid name for a C variable? Exam_veda Both A and B Exam veda None of these Examians Exam_veda Both A and B Exam veda None of these Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } None of these. Error Will make an infinite loop. Some address will be printed. None of these. Error Will make an infinite loop. Some address will be printed. ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... ASCII value of the input read. 1 0 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 1 0 The number of successful read input values. The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); 15 13 12 14 Garbage Value 15 13 12 14 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Merging two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..2 2..2 4..4 2..4 4..2 2..2 4..4 2..4 ANSWER DOWNLOAD EXAMIANS APP