What is a built-in function in C?
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 |
What math functions are available for integers? For floating point?
How can you allocate arrays or structures bigger than 64K?
Explain a pre-processor and its advantages.
What is a newline escape sequence?
Explain how do you print only part of a string?
why we need function pointers?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How do I declare a pointer to an array?
What is %s and %d in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is Lazy evaluation in C? Give an example.
How many levels of pointers have?