What are structure members?
No Answer is Posted For this Question
Be the First to Post Answer
What is use of pointer?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How to add two numbers with using function?
How can you check to see whether a symbol is defined?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is the difference between typeof(foo) and myFoo.GetType()?
What does the error message "DGROUP exceeds 64K" mean?
What are the advantages of using Unions?
write a addition of two no. program with out using printf,scanf,puts .
What is use of #include in c?
What is data structure in c and its types?
How does struct work in c?