MCQOPTIONS
Bookmark
Saved Bookmarks
→
Expressions
→
General
→
Expression x % y is equivalent to____?
1.
Expression x % y is equivalent to____?
A.
(x (x/y))
B.
(x (x/y) * y)
C.
(y (x/y))
D.
(y (x/y) * y)
Answer» C. (y (x/y))
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
For which of the following situation should the register storage class be used?
What will be the output of the following code? #include< stdio> int main() { extern int a; static char j = E ; printf( %c %d , ++j, ++a); return 0; }
Where will the space be allocated for an automatic storage class variable?
What will be the output of the following program? #include< stdio> int main() { register int I = 2; static char ch = A ; auto float j; int k; k = ++ch && I; k = ++ch; j = i-- + ++k * 2; printf( %d %f , k , j); return 0; }
What will be the output of the following program? #include< stdio> int main() { static unsigned int a = 23; register unsigned char c = R ; auto long unsigned q = 345L; static long signed p = 345L; printf( a = %u c = %c , a ,c); printf( nq = %ld p = %ld , q, p); return 0; }
In case of a conflict between the names of a local and global variable what happens?
What will be the output of the following code? static int I = 5; main() { int sum = 0 do { sum + = (1/i); }while(0 < I> printf( sum of the series is %d , sum); }
What is the value of x after executing the following statement? int x = 011 | 0x10;
Which of the following statement is correct about the code snippet given below? #include < stdio> int main() { int n = 12, k; printf( %d , (k = sizeof( n + 12.0))++); return 0; }
Expression x % y is equivalent to____?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply