What are formal parameters?


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

Post New Answer

More C Interview Questions

write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .

1 Answers   Subex,


How do I round numbers?

0 Answers  


Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


how to find greatet of 10 numbers without using array?

4 Answers  


write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.

1 Answers   iGate, Shashi, Source Bits, Subex,






Explain pointers in c programming?

0 Answers  


a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All

3 Answers   Accenture, Digg.com,


which one is highest Priority in c? a)=,b)+,c)++,d)==

4 Answers  


Explain how can I read and write comma-delimited text?

0 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation

10 Answers   IBM,


What is the translation phases used in c language?

0 Answers  


Categories