What is a built-in function in C?



What is a built-in function in C?..

Answer / hrpynux@gmail.com

Built-in(Library) Functions
The system provided these functions and stored in the library. Therefore it is also called Library Functions. e.g. scanf(), printf(), strcpy, strlwr, strcmp, strlen, strcat etc. To use these functions, you just need to include the appropriate C header files.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case

9 Answers   Accenture, TCS,


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database

2 Answers   TCS, Unisys, Webyog,


The differences between Windows XP and Windows Visa

8 Answers   HCL,


a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above

3 Answers  


what is the role you expect in software industry?

2 Answers   HCL, Wipro,






Can we change the value of constant variable in c?

0 Answers  


Why is c called a mid-level programming language?

0 Answers  


What is the advantage of c?

0 Answers  


What is meant by int fun const(int a, int b) { .... ... }

1 Answers  


What is the exact difference between '\0' and ""

3 Answers  


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

0 Answers  


we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?

4 Answers   HP, Wipro,


Categories