What is a stream in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
Explain how can you avoid including a header more than once?
explain what are actual arguments?
Difference between C and Embedded C?
what about "char *(*(*a[])())();"
What is the most efficient way to store flag values?
How can I access an I o board directly?
Write a pro-gramme to determine whether the number is even or odd?
How can I remove the trailing spaces from a string?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
#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); }
Can you mix old-style and new-style function syntax?