What is #define size in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What is equivalent to ++i+++j?
What is the difference b/w Structure & Union?
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
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is const volatile variable in c?
a C prog to swap 2 no.s without using variables just an array?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What are the different properties of variable number of arguments?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What is the use of header files?