What are the different catagory of function in c programming?
Answers
Answered by
1
1) Every C program has a function called main() that is called by operating system when a user runs the program. 2) Every function has a return type. If a function doesn't return any value, then void is used as return type. 3) In C, functions can return any type except arrays and functions.
Answered by
0
Answer:
Above answer is perfect
Similar questions