C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is None of these 215 216 216 – 1 215 – 1 None of these 215 216 216 – 1 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 1 Compilation Error 0 -1 33 1 Compilation Error 0 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Pick the correct statements.I. The body of a function should have only one return statement.II. The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment. II and IV I and III II and III I and II III and IV II and IV I and III II and III I and II III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd James Dr. Bjarne Stroustrup Dennis Ritchie Gosling F. Codd James Dr. Bjarne Stroustrup Dennis Ritchie Gosling ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} Error 300 %d\n None of These Error 300 %d\n None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these Makes the debugging task easier. Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these ANSWER DOWNLOAD EXAMIANS APP