Why is c fast?
No Answer is Posted For this Question
Be the First to Post Answer
Explain zero based addressing.
How we can write a value to an address using macro..?
Which is better malloc or calloc?
what is the return type of printf
Why is c so powerful?
main difference between c and c++ language
pierrot's divisor program using c or c++ code
What does %d do?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
#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); }
print 1-50 with two loop & two print Statement
how to print this pyramid * * * * * * * * * * * * *