Answer Posted / 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 View All Answers
#include
Explain logical errors? Compare with syntax errors.
Explain do array subscripts always start with zero?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Which programming language is best for getting job 2020?
What is c++ used for today?
What are the c keywords?
How do you print only part of a string?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Is there a way to compare two structure variables?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Give differences between - new and malloc() , delete and free() ?
Can the sizeof operator be used to tell the size of an array passed to a function?
Why is c so popular?
How can you increase the size of a statically allocated array?