What is a ternary operator in c?


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

Post New Answer

More C Interview Questions

Is it possible to initialize a variable at the time it was declared?

0 Answers  


write a c program to convert fahrenheit to celsius?

4 Answers   TCS,


Explain what does the function toupper() do?

0 Answers  


What do you mean by c?

0 Answers  


When should a type cast be used?

0 Answers  






main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


Can a function argument have default value?

0 Answers   Genpact,


Explain About fork()?

0 Answers   TISL,


ABCDCBA ABC CBA AB BA A A

4 Answers   TCS,


Do you know what are bitwise shift operators in c programming?

0 Answers  


What is double pointer in c?

0 Answers  


21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }

3 Answers  


Categories