What are integer variable, floating-point variable and character variable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Explain about block scope in c?

0 Answers  


being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?

1 Answers   TCS,


How. To pass the entrance test

1 Answers   Tech Mahindra,


How do you declare a variable that will hold string values?

0 Answers  


What is actual argument?

0 Answers  






If null and 0 are equivalent as null pointer constants, which should I use?

0 Answers  


Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?

6 Answers  


#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }

15 Answers   Infosys,


Can we use visual studio for c?

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


Why void is used in c?

0 Answers  


Write a c program to print the sizes and ranges of different data types in c?

1 Answers  


Categories