What are the basic data types associated with c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print sum of each row of a 2D array.
What is the c language function prototype?
Define Spanning-Tree Protocol (STP)
Can the size of an array be declared at runtime?
What is a wrapper function in c?
differnce between do and do while
What are variables c?
How many data structures are there in c?
what is void pointer?
How do I determine whether a character is numeric, alphabetic, and so on?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
Which header file is essential for using strcmp function?