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.
1. What will be the output of the C program?
#include<stdio.h> int main() { char num = '\010'; printf("%d", num); return 0; }
Option: D
The value of a variable num is '\010'. Which means the character with value 10 in octal, which is 8 in decimal.
2. What will be the output of the C program?
#include<stdio.h> int main() { void num=10; printf("%v", num); return 0; }
Option: A
Void is not a valid data type for declaring variables.
3. What will be the output of the C program?
#include<stdio.h> int main() { void *ptr; int num = 10; ptr = # printf("%d", ptr); return 0; }
Option: D
Though, void is not a valid data type for declaring variables. It is a valid for declaring pointer variable *ptr thus printf displays the address of a normal variable num
4. What will be the output of the C program?
#include<stdio.h> int main() { printf("%d\t",sizeof(2.5)); printf("%d\t",sizeof(2)); printf("%d",sizeof('A')); return 0; }
Option: B
C compiler by default will assign any undeclared float data type as double. Thus 8 4 1 is outputted
5. What will be the output of the C program?
#include<stdio.h> int main(){ signed a; unsigned b; a = 6u + -16 + 16u + -6; b = a + 1; if(a == b) printf("%d %d",a,b); else printf("%u %u",a, b); return 0; }
Option: C
Clearly, a != b and it execute the else part, where we ask compiler to display the value of a and b.
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