What are types of functions?



What are types of functions?..

Answer / Priyanka Saxena

In C programming language, there are two main types of functions: built-in or predefined functions and user-defined functions.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Is there a way to jump out of a function or functions?

1 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


Is c procedural or functional?

1 Answers  


a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above

2 Answers   HCL, NBN,


which do you prefer C or Pascal?

1 Answers  


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 []);

1 Answers   TCS,


What is the size of a union variable?

1 Answers  


How can I make sure that my program is the only one accessing a file?

1 Answers  


Explain how can I pad a string to a known length?

1 Answers  


What are the advantages of the functions?

1 Answers  


What is stack in c?

1 Answers  


What are the different types of linkage exist in c?

1 Answers  


Categories