Why main is used in c?


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

Post New Answer

More C Interview Questions

What is assert and when would I use it?

0 Answers  


What is use of integral promotions in c?

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,


write a string copy function routine?

2 Answers  


Where are local variables stored in c?

0 Answers  






Explain what is wrong in this statement?

0 Answers  


how can i get output like this? 1 2 3 4 5 6

6 Answers   Excel,


How can you avoid including a header more than once?

0 Answers  


for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }

1 Answers  


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

0 Answers  


What are conditional operators in C?

0 Answers   Adobe,


Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4

2 Answers   Mascot,


Categories