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 |
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
how can i sort numbers from ascending order and descending order using turbo c..
what is the difference between NULL & NUL keywords in C?
Are there any problems with performing mathematical operations on different variable types?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
coding for Fibonacci.?
what is the use of fflush() function?
What is the c language function prototype?
Why pointers are used?
What is the difference between the local variable and global variable in c?
What are header files in c programming?