What is the advantage of using #define to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
What is #line in c?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
Why doesn't C have nested functions?
The file stdio.h, what does it contain?
whitch value return void main?
main() { int a = 65; printf(ā%d %o %xā,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What are local static variables? How can you use them?
What is the relationship between pointers and data structure?
If we give two names then this displays the connection between the two people. It is nothing but flames game
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Which type of language is c?