How many parameters should a function have?


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

Post New Answer

More C Interview Questions

why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

0 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


Define macros.

0 Answers   Tech Mahindra,


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

0 Answers   TCS,


write a c program to find largest of three numbers using simple if only for one time.

1 Answers  






give one ip, find out which contry

4 Answers   Google,


Magic square

0 Answers  


what is a function pointer and how all to declare ,define and implement it ???

4 Answers   Honeywell,


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


What is getche() function?

0 Answers  


What is union and structure in c?

0 Answers  


Why dont c comments nest?

0 Answers  


Categories