C Programming The function scanf() returns ......... 1 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 1 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the result of compiling and running this code?main(){ char string[] = "Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print garbage value Compilation Error None of these. will print Hello World will print garbage value Compilation Error None of these. will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 9 10 11 12 13 Infinite loop 10 11 12 13 14 None of these 10 11 12 13 14 15 9 10 11 12 13 Infinite loop 10 11 12 13 14 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Bjarne Stroustrup James Gosling Dr. F. Codd Dennis Ritchie Bjarne Stroustrup James Gosling Dr. F. Codd Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = 1, +i = 1 i = -1, +i = -1 i = -1, +i = 1 None of These i = 1, +i = 1 i = -1, +i = -1 i = -1, +i = 1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? -1 Program do no return a value. 2 1 -1 Program do no return a value. 2 1 ANSWER DOWNLOAD EXAMIANS APP