What is #error and use of it?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between struct and typedef struct 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....
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is #ifdef ? What is its application?
What is fflush() function?
What do you mean by scope of a variable in c?
What is %s and %d in c?
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Can you explain the four storage classes in C?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
how to write hello word without using semicolon at the end?