The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
In most of the MNC interview questions such as in ZOHO interview question, IVTL Infoview interview questions, Amazon interview questions, GOOGLE interview questions, Infosys interview questions and even in Voonik interview questions, We come across several Tricky C Questions about which 2:5 of the questions are from data types in c. Solving that kind of tricky C questions is not an easy task for all C programmers. We need more practices to solve it with ease. So we provide 25+ interesting C questions in data types to make your MNC interview very easy.
21. What will be the output of the C program?
#include<stdio.h> int main() { char *ptr = "c-aptitude%s"; printf(ptr); return 0; }
Option: D
%s is the format specifier and it won't print in any case.
22. What will be the output of the C program?
#include<stdio.h> int main() { printf(" %%% "); return 0; }
Option: A
Alternative % are treated as format specifier and it won't display.
23. What will be the output of the C program?
#include<stdio.h> int main() { float x = 3.14; double y = 3.14; printf("%f %ff",x, y); return 0; }
Option: D
In C language, float, double are all real data types.
The format specifier of float is %f.
The format specifier of double can also represent by %f
24. What will be the output of the C program?
#include<stdio.h> int main() { static int num = 3; if(--num) { main(); printf("%d ",num); } return 0; }
Option: B
A static variable num is shared among all calls of a function finally ended up with a output 0
25. What will be the output of the C program?
#include<stdio.h> int main() { typedef int num; num num1 = 5; printf("%d", num1); return 0; }
Option: C
Here the program creates a user defined type num and creates a variable num1 of type num. Hence there is no problem with the output
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019