C Programming Which of the following operator takes only integer operands? + * % None of these / + * % None of these / ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 1 0 0 0 None of these 0 1 1 1 1 0 0 0 None of these 0 1 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));} Garbage Value 444 333 000 433 Garbage Value 444 333 000 433 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} garbage values 0 0 0 1 1 1 Error garbage values 0 0 0 1 1 1 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} hi h Garbage Value hi followed by garbage value Error hi h Garbage Value hi followed by garbage value Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. 0 The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. 0 ANSWER DOWNLOAD EXAMIANS APP