What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?


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

Post New Answer

More C Interview Questions

What is the argument of a function in c?

0 Answers  


what is a function method?give example?

0 Answers  


What is c method?

0 Answers  


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


write a program for fibonaci series by using while loop in c?

2 Answers  






How we can set and clear bit in a byte using macro function?

2 Answers   L&T, Samsung,


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


What is a pragma?

0 Answers  


what is the c.

3 Answers   IBM, TCS,


Explain why C language is procedural?

0 Answers   GE,


What is derived datatype in c?

0 Answers  


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

0 Answers  


Categories