what will be the output off the following program?
#include<stdio.h>
int main()
{
int a;
a=015+0*71+5;
printf("%d,a");
return0;
}
Answer Posted / srinivasu
18,a
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
What is c standard library?
Can a void pointer point to a function?
When was c language developed?
please explain every phase in the "SDLC" in the dotnet.
Explain how can I prevent another program from modifying part of a file that I am modifying?
What are the 5 organizational structures?
When should a far pointer be used?
What are header files and what are its uses in C programming?
What 'lex' does?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Why does everyone say not to use scanf? What should I use instead?
Define recursion in c.
What is pragma in c?
How many keywords (reserve words) are in c?
Add Two Numbers Without Using the Addition Operator