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
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is a #include preprocessor?
Explain what are global variables and explain how do you declare them?
What is data type long in c?
What are the advantages of c preprocessor?
What are external variables in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are bitwise shift operators in c programming?
Why we use conio h in c?
What tq means in chat?
Are the variables argc and argv are local to main?
Why n++ execute faster than n+1 ?
Describe wild pointers in c?
Explain the difference between exit() and _exit() function?
how to execute a program using if else condition and the output should enter number and the number is odd only...