C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 0 10 1 None of these 14 0 10 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -3.4e38 to 3.4e38 -32767 to 32768 -32768 to 32767 -32668 to 32667 -3.4e38 to 3.4e38 -32767 to 32768 -32768 to 32767 -32668 to 32667 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. F. Codd Bjarne Stroustrup James Gosling Dennis Ritchie Dr. F. Codd Bjarne Stroustrup James Gosling Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language General purpose language Data processing language None of these System programming language General purpose language Data processing language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 3 2 1 0 infinity loop no output 3 2 1 3 2 1 0 infinity loop no output ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long float char short int long float char short int ANSWER DOWNLOAD EXAMIANS APP