C Programming Standard ANSI C recognizes ______ number of keywords? 32 36 30 24 40 32 36 30 24 40 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An operating system None of these. A compiler An Editor An operating system None of these. A compiler An Editor ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() strstr() strnset() strchr() None of these strrchr() strstr() strnset() strchr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with Both of the above A number A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Garbage Value 6 Compiler Error 5 Garbage Value 6 Compiler Error 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } Syntax error 4 Runtime error 4 5 6 7 1 2 3 4 Syntax error 4 Runtime error 4 5 6 7 1 2 3 4 ANSWER DOWNLOAD EXAMIANS APP