C Programming Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ? Remainder cannot be obtain in floating point division. rem = fmod(3.14, 2.1); rem = 3.14 % 2.1; rem = modf(3.14, 2.1); Remainder cannot be obtain in floating point division. rem = fmod(3.14, 2.1); rem = 3.14 % 2.1; rem = modf(3.14, 2.1); ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); None of these 9 10 11 12 13 10 11 12 13 14 15 10 11 12 13 14 Infinite loop None of these 9 10 11 12 13 10 11 12 13 14 15 10 11 12 13 14 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} None of These sizeof(i)=2 Compiler Error sizeof(i)=1 None of These sizeof(i)=2 Compiler Error sizeof(i)=1 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; 3 2 1 0 3 2 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Relational operators Arithmetic operators Logical operators Equality operators Relational operators Arithmetic operators Logical operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Local scope Function scope Block scope No scope at all File scope Local scope Function scope Block scope No scope at all ANSWER DOWNLOAD EXAMIANS APP