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 |
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
ATM machine and railway reservation class/object diagram
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
What are qualifiers?
How do I copy files?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Write a code to generate a series where the next element is the sum of last k terms.
Which is best linux os?
Can a file other than a .h file be included with #include?
program to find a smallest number in an array
With the help of using classes, write a program to add two numbers.