How is a macro different from a function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between struct and union in C?
I have a varargs function which accepts a float parameter?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
discuss the steps needed to get a program from source code to executable in a system?
List out few of the applications that make use of Multilinked Structures?
What is the use of gets and puts?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
How can I find the day of the week given the date?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What does %p mean?
What is array in C
Differentiate between new and malloc(), delete and free() ?