C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators Logical operators Relational operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} None of These 5 6 7 None of These 5 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An Editor An operating system A compiler None of these. An Editor An operating system A compiler None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );} The program will not enter into the loop. There will be a compilation error reported. A run time error will be generated. Prints the value of 0 one time only. The loop will run infinitely many times. The program will not enter into the loop. There will be a compilation error reported. A run time error will be generated. Prints the value of 0 one time only. The loop will run infinitely many times. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? float double char real int float double char real int ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } Compiler Error XAM is printed Nothing is printed exam is printed Compiler Error XAM is printed Nothing is printed exam is printed ANSWER DOWNLOAD EXAMIANS APP