What does main () mean in c?


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

Post New Answer

More C Interview Questions

main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


Explain demand paging.

1 Answers   Agilent,


What does void main return?

0 Answers  


Explain what are multibyte characters?

0 Answers  


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,






1,4,8,13,21,30,36,45,54,63,73,?,?.

10 Answers   AMB, Franklin Templeton,


How can you determine the size of an allocated portion of memory?

0 Answers   Aspire, Infogain,


void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?

2 Answers   TCS,


How can I use a preprocessorif expression to ?

0 Answers  


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

0 Answers  


How can you pass an array to a function by value?

0 Answers  


how to find string length wihtout using c function?

6 Answers  


Categories