How to declare a variable?


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

Post New Answer

More C Interview Questions

int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?

15 Answers   Mascot,


Explain how do I determine whether a character is numeric, alphabetic, and so on?

0 Answers  


HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER

4 Answers  


What is an endless loop?

0 Answers  


How to write c functions that modify head pointer of a linked list?

0 Answers  






extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?

2 Answers  


Can the size of an array be declared at runtime?

0 Answers  


what is the difference between static variable and register variable?

3 Answers  


How can I pad a string to a known length?

0 Answers  


Explain why c is faster than c++?

0 Answers  


How can you find out how much memory is available?

0 Answers  


Categories