What is the benefit of using #define to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
Give the Output : * * * * * * * * * *
What is extern storage class in c?
What is pivot in c?
Do you know the difference between malloc() and calloc() function?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
Explain what are the different file extensions involved when programming in c?
What is data type long in c?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
How can I invoke another program or command and trap its output?
What are the similarities between c and c++?
write the program to find multiplication of 2-D matrix??????????
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