C Programming The function scanf() returns ......... The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 0 1 The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 III and IV I, II and III I and II II and III I, III and IV III and IV I, II and III I and II II and III I, III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() gets() printf() None of these scanf() puts() gets() printf() None of these scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value result call by reference call by value None of these. call by value result call by reference call by value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} zero None of These Error three zero None of These Error three ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 2, 2 4, 4 2, 4 0, 2 2, 0 2, 2 4, 4 2, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP