How #define works?
No Answer is Posted For this Question
Be the First to Post Answer
How are Structure passing and returning implemented by the complier?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Is array a primitive data type in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Do you know what are bitwise shift operators in c programming?
What do you understand by normalization of pointers?
How reliable are floating-point comparisons?
Is main is a keyword in c?
What is wrong with this initialization?
What is the difference between null pointer and wild pointer?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?