C Programming Functions have .......... Local scope No scope at all File scope Function scope Block scope Local scope No scope at all File scope Function scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 0 1 1 1 None of these 1 0 0 0 0 1 1 1 None of these 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} None of these Hello Hello World World WorldHello None of these Hello Hello World World WorldHello ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 12 10 11 13 22 13 14 14 22 12 12 13 22 14 12 13 22 11 11 11 12 10 11 13 22 13 14 14 22 12 12 13 22 14 12 13 22 11 11 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of macros All of these Takes care of conditional compilation Takes care of include files Acts before compilation Takes care of macros All of these Takes care of conditional compilation Takes care of include files ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 2 2 1 2 2 1 1 1 2 2 1 2 2 1 1 ANSWER DOWNLOAD EXAMIANS APP