C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 1 Error 100 1 Error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} 10..50 10..10 0 Error 10..50 10..10 0 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Block scope Function scope File scope Local scope No scope at all Block scope Function scope File scope Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 None of these 1 1 0 0 0 1 1 0 None of these 1 1 0 0 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 1 Error 0 100 1 Error 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 2 Theoratically no limit. The only practical limits are memory size and compilers. 50 8 20 2 Theoratically no limit. The only practical limits are memory size and compilers. 50 8 ANSWER DOWNLOAD EXAMIANS APP