C Programming Which is the only function all C programs must contain? main() getch() system() start() printf() main() getch() system() start() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} None of These Error I hate Examians I love Examians None of These Error I hate Examians I love Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. All of these Makes the debugging task easier. Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. All of these Makes the debugging task easier. Helps to avoid repeating a set of statements many times. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } exam is printed Nothing is printed XAM is printed Compiler Error exam is printed Nothing is printed XAM is printed Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 0 -1 1 Compilation Error 33 0 -1 1 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 100 10012 Syntax error g##g2 Runtime error 100 10012 Syntax error g##g2 Runtime error ANSWER DOWNLOAD EXAMIANS APP