What is the difference between void main() and void main (void) give example programme?


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

Post New Answer

More C Interview Questions

parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..

4 Answers  


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }

9 Answers  


how to go with this?

1 Answers   Wipro,


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

0 Answers  


Why isnt any of this standardized in c?

0 Answers  


For what purpose null pointer used?

0 Answers  


Explain what is wrong with this program statement?

0 Answers  


1 What is a Data Structure?

1 Answers  


What does a pointer variable always consist of?

0 Answers  


How can I find out how much memory is available?

1 Answers   Persistent,


Explain how can you tell whether a program was compiled using c versus c++?

0 Answers  


Categories