C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 2 0 3 1 2 0 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Logical operators Relational operators Arithmetic operators Equality operators Logical operators Relational operators Arithmetic operators Equality operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} 12PP345 None of These 12PP Compiler Error 12PP345 None of These 12PP Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 64 16 4 None of These 64 16 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 100 5 100 100 0 100 5 0 20 5 0 100 100 100 100 100 5 100 100 0 100 5 0 20 5 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 1 -1 Program do no return a value. 2 1 -1 Program do no return a value. ANSWER DOWNLOAD EXAMIANS APP