What are the types of variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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??
Which type of language is c?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Explain what is the difference between functions abs() and fabs()?
how can i print "hello"
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
who is the father of c
What is meant by errors and debugging?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
How can I list all of the predefined identifiers?
What is sorting in c plus plus?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.