for questions 14,15,16,17 use the following
alternatives:a.int b.char.c.string.d.float



for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float..

Answer / rukmanee

a.int

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Interview Questions

what is the defrenece between structure and union

5 Answers   Aloha Technology,


What is the difference between getch() and getche()?

1 Answers   NSPL,


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


What does %c do in c?

0 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  






Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent

0 Answers  


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  


Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }

7 Answers   TCS,


what is the code for getting the output as * ** ***

5 Answers   Caritor,


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


What is character constants?

0 Answers  


Categories