Explain how do you override a defined macro?
No Answer is Posted For this Question
Be the First to Post Answer
Does c have enums?
What is optimization in c?
when user give a number it multiply with 9 without useing '+' and '*' oprator
Explain how can I write functions that take a variable number of arguments?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Why is C called a middle-level language?
What is this infamous null pointer, anyway?
write a c program to store and print name,address,roll.no of a student using structures?
How can I call a function, given its name as a string?
how to create c progarm without void main()?
What is struct node in c?
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....