C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam\0Veda Veda None of these Exam Exam Veda Exam\0Veda Veda None of these Exam Exam Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 0 1 3 2 0 1 3 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? It is a unary operator It cannot be applied to an expression The operand can come before or after the operator All of these It associates from the right It is a unary operator It cannot be applied to an expression The operand can come before or after the operator All of these It associates from the right ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 11 None of These 13 12 11 None of These 13 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. A compiler An operating system An Editor None of these. A compiler An operating system An Editor 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);} 65486, 65486 65486, 65487 65486, 65488 None of these 65486, 65490 65486, 65486 65486, 65487 65486, 65488 None of these 65486, 65490 ANSWER DOWNLOAD EXAMIANS APP