C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 None of these 0 0 1 0 0 1 1 1 None of these 0 0 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda Veda Exam\0Veda Exam None of these Exam Veda Veda Exam\0Veda Exam None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error -2 1 2 Error -2 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Error Some address will be printed None of These make an infinite loop Error Some address will be printed None of These make an infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } haasi None of these hai asiha absiha haasi None of these hai asiha absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65490 65486, 65487 65486, 65488 65486, 65486 None of these 65486, 65490 65486, 65487 65486, 65488 65486, 65486 ANSWER DOWNLOAD EXAMIANS APP