main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / 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 |
Post New Answer View All Answers
What is difference between stdio h and conio h?
Write a simple code fragment that will check if a number is positive or negative.
Can you tell me how to check whether a linked list is circular?
What does %c do in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain what is the difference between far and near ?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are pragmas and what are they good for?
What is "Duff's Device"?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What are linked lists in c?
What are the main characteristics of c language describe the structure of ac program?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Differentiate call by value and call by reference?
What is the scope of global variable in c?