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 / shilpa sarkar
error occurs in format
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is difference between structure and union in c programming?
Why c is known as a mother language?
What is static and volatile in c?
Can you please explain the scope of static variables?
Was 2000 a leap year?
what will be the output for the following main() { printf("hi" "hello"); }
What is the use of a ‘ ’ character?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
How to implement a packet in C
Tell me when is a void pointer used?
What is the symbol indicated the c-preprocessor?
How can this be legal c?
How does pointer work in c?
What do you understand by friend-functions? How are they used?
In C programming, how do you insert quote characters (‘ and “) into the output screen?