C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 0 5 Garbage Value None of these 6 0 5 Garbage Value None of these 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 50 10 Compiler Error None of These 50 10 Compiler Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 713 Syntax error 1289 0713 0289 713 Syntax error 1289 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} None of these 6 9 5 Error None of these 6 9 5 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Enhances the logical clarity of the program. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 30 32 40 36 24 30 32 40 36 24 ANSWER DOWNLOAD EXAMIANS APP