C Programming C programs are converted into machine language with the help of An operating system A compiler None of these. An Editor An operating system A compiler None of these. An Editor 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} Error 0 10..50 10..10 Error 0 10..50 10..10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 10 Garbage Value 1 None of These 10 Garbage Value 1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} h Error Garbage Value hi hi followed by garbage value h Error Garbage Value hi hi followed by garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error 10 50 None of These Compiler Error 10 50 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? / * % + None of these / * % + None of these ANSWER DOWNLOAD EXAMIANS APP