C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff2 fff3 fff4 fff1 fff0 fff2 fff3 fff4 fff1 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 None of these 10 1 6 0 None of these 10 1 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54554 54544 45445 45545 54554 54544 45445 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() system() printf() getch() start() main() system() printf() getch() start() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} None of These Garbage Value 0 2 None of These Garbage Value 0 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] arr{7} None of these arr{6} arr[6] arr[7] arr{7} None of these arr{6} arr[6] ANSWER DOWNLOAD EXAMIANS APP