main()
{int a=200*200/100;
printf("%d",a);
}
Answers were Sorted based on User's Feedback
Answer / dally
200*200/100
here both *,% contained same priority and also left->right
shift so the excusion will start from left->right so answer is
400.
| Is This Answer Correct ? | 4 Yes | 8 No |
Answer / rukmanee
int a=200*200/100;
=200*2;
=400;
the value of a=400
| Is This Answer Correct ? | 1 Yes | 7 No |
How do you determine whether to use a stream function or a low-level function?
write a programe to find the factorial of given number using recursion
When c language was developed?
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
what is diference between return 0 and return NULL??
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Can i use Two or More Main Funtion in any C program.?
What is switch in c?
How do we print only part of a string in c?
Explain what is the advantage of a random access file?