Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?


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

Post New Answer

More C Interview Questions

How many levels of pointers have?

0 Answers  


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

0 Answers  


What is external variable in c?

0 Answers  


Can we compile a program without main() function?

0 Answers  






what is used instead of pointers in java than c?

1 Answers   Vuram,


What do you mean by invalid pointer arithmetic?

0 Answers  


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.

1 Answers  


What is meant by errors and debugging?

0 Answers  


What are directives in c?

0 Answers  


What is enumerated data type in c?

0 Answers  


Categories