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 / sandeep bussa
18
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Is main a keyword in c?
What is class and object in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Why is #define used?
What are the c keywords?
What is 02d in c?
What is bss in c?
What are the advantages of using Unions?
Do you have any idea how to compare array with pointer in c?
What is wrong in this statement?
What is the general form of function in c?
How can you increase the size of a statically allocated array?
What is the right type to use for boolean values in c? Is there a standard type?
Differentiate between functions getch() and getche().
What is data structure in c and its types?