C Programming Multiple Choice Questions And Answers
Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:
List of Programming Full Forms
- int
- char
- float
- double
- Definition
- Declaration
- Function
- Error
int main()
{
int B;
B = 10;
printf("%d", B);
return 0;
}
- register
- static
- auto
- const
#include
int main()
{
int a = 10;
double b = 5.6;
int c;
c = a + b;
printf("%d", c);
}
- Output :15.5
- Output : 15
- Output :16
- Error