C Programming Which is the only function all C programs must contain? system() getch() printf() start() main() system() getch() printf() start() main() ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be initialized. It should be both declared and initialized. It should be declared. None of these. It should be initialized. It should be both declared and initialized. It should be declared. None of these. 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"); } } XAM is printed Compiler Error Nothing is printed exam is printed XAM is printed Compiler Error Nothing is printed exam is printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? unsigned int Depends upon the type of the variable to which it is pointing. No data type float int unsigned int Depends upon the type of the variable to which it is pointing. No data type float int ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 5 5 5 5 2 4 4 2 5 5 2 4 5 5 5 5 2 4 4 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? 22 11 11 11 22 13 14 14 12 10 11 13 22 14 12 13 22 12 12 13 22 11 11 11 22 13 14 14 12 10 11 13 22 14 12 13 22 12 12 13 ANSWER DOWNLOAD EXAMIANS APP