What are the different categories of functions in c?



What are the different categories of functions in c?..

Answer / Vishal Misra

"In C programming, there are two main categories of functions: Built-in functions (predefined by the compiler) and User-defined functions (created by the programmer)."

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is use of integral promotions in c?

1 Answers  


main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā€œ%dā€,x); }

8 Answers   Vector,


What is an object?

5 Answers  


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1 Answers   Huawei,


what is the difference between structural,object based,object orientd programming languages?

1 Answers   PanTerra,


What does the error 'Null Pointer Assignment' mean and what causes this error?

1 Answers   TISL,


What is the diffences between Windows XP and Windows Visa

1 Answers   Aricent, FHF,


what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }

1 Answers  


Write a programe print the sum of series 0,1,2,.....10

7 Answers  


What does return 1 means in c?

1 Answers  


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


Why does everyone say not to use scanf? What should I use instead?

1 Answers  


Categories