C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h None of these During Editing During Preprocessing During Execution During linking None of these During Editing During Preprocessing During Execution During linking ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Conditional operator Assignment operator Division operator Comma operator Unary-operator Conditional operator Assignment operator Division operator Comma operator 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
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 433 333 Garbage Value 444 000 433 333 Garbage Value 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} None of These Compiler Error will print Hello World Can't Say None of These Compiler Error will print Hello World Can't Say ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 1 10 6 None of these 0 1 10 6 None of these ANSWER DOWNLOAD EXAMIANS APP