no consistent academics. how to answer the question
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using macro in c language?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What are the uses of pre-processor directives?
Explain about the functions strcat() and strcmp()?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
void main() { int i=5; printf("%d",i+++++i); }
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the hardest programming language?
What is bubble sort technique in c?
Can a variable be both const and volatile?
How can I handle floating-point exceptions gracefully?
What is the benefit of using #define to declare a constant?