main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / rukmanee
int a=200*200/100;
=200*2;
=400;
the value of a=400
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Explain is it valid to address one element beyond the end of an array?
What does a pointer variable always consist of?
Explain heap and queue.
Write a program to check armstrong number in c?
what are the different storage classes in c?
What is c value paradox explain?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
In C, What is the #line used for?
What's the total generic pointer type?
What is fflush() function?
What is I ++ in c programming?
How does struct work in c?
Why is c called a structured programming language?
How main function is called in c?
What does stand for?