how many header file is in C language ?
Answer Posted / naznin nahar
there are64 header file in c language
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How can you read a directory in a C program?
Explain function?
What is masking?
Is main a keyword in c?
How can you find the exact size of a data type in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Can you mix old-style and new-style function syntax?
What is memcpy() function?
All technical questions
Array is an lvalue or not?
What is queue in c?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
How can you call a function, given its name as a string?
Is stack a keyword in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.