C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 5 6 Compiler Error Garbage Value 5 6 Compiler Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? No output 8 6 Runtime error Syntax error No output 8 6 Runtime error Syntax error 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; }} None of These zero three Error None of These zero three Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeated programming across programs. All of these Helps to avoid repeating a set of statements many times. Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. All of these Helps to avoid repeating a set of statements many times. Makes the debugging task easier. Enhances the logical clarity of the program. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be initialized. None of these. It should be declared. It should be both declared and initialized. It should be initialized. None of these. It should be declared. It should be both declared and initialized. ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd James Bjarne Stroustrup Gosling Dennis Ritchie Dr. F. Codd James Bjarne Stroustrup Gosling Dennis Ritchie Dr. ANSWER DOWNLOAD EXAMIANS APP