Write one statement equivalent to the following two statements: x=sqrA.; return(x);Choose from one of the alternativesA. return(sqrA)B. printf("sqrA.")C. return(a*a*a)D. printf("%d",sqrA.)
Latest Answer: scope of x=6 will take precedenc on x=7so y=7 ...
Read the function conv() given belowconv(int t){int u;u=5/9 * (t-32);return(u); }What is returnedA. 15B. 0C. 16.1D. 29
Which of the following represents true statement either x is in the range of 10 and 50 or y is zeroA. x >= 10 && x <= 50 || y = = 0B. x<50C. y!=10 && x>=50D. None of these
Which of the following is not an infinite loop?A. while(1){ ....}B. for(;;){...}C. x=0; do{ /*x unaltered within the loop*/ .....}while(x = = 0);D. # define TRUE 0 ... while(TRUE){ ....}
Latest Answer: '9' is a charecter constant ...
Latest Answer: string.anything within inverted commas is a string. ...
Latest Answer: float ...
A memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed:s="Entrance"l=strlen(s);what is the value of l ?A. 20B. 8C. 9D. 21
Given the piece of codeint a[50];int *pa;pa=a;To access the 6th element of the array which of the following is incorrect?A. *(a+5)B. a[5]C. pa[5]D. *(*pa + 5}
View page << Previous 1 2 3 [4] 5 6 7 8 9 Next >>

Go Top