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 |
C program to find all possible outcomes of a dice?
What is I ++ in c programming?
whitch value return void main?
logic for x=y^n
Explain how do you use a pointer to a function?
What is the difference between strcpy() and memcpy() function in c programming?
What are bitwise shift operators in c programming?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Why can’t we compare structures?
What is the difference function call by value & function call by reference?
program to locate string with in a string with using strstr function
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }