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 |
Is there a way to jump out of a function or functions?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Is c procedural or functional?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
which do you prefer C or Pascal?
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 []);
What is the size of a union variable?
How can I make sure that my program is the only one accessing a file?
Explain how can I pad a string to a known length?
What are the advantages of the functions?
What is stack in c?
What are the different types of linkage exist in c?