Explain about the constants which help in debugging?
No Answer is Posted For this Question
Be the First to Post Answer
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
What is the purpose of & in scanf?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
How are Structure passing and returning implemented by the complier?
What is a volatile keyword 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....
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What is huge pointer in c?
How to declare pointer variables?
Where is volatile variable stored?
what are the stages of compilation