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 is the use of ?
What are the salient features of c languages?
Why we use stdio h in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
Explain the differences between public, protected, private and internal.
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
How do I round numbers?
printf("%d",(printf("Hello")); What it returns?
which one is better structure or union?(other than the space occupied )
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
Explain how do you generate random numbers in c?
What is the difference between CV and Resume ?