Can stdout be forced to print somewhere other than the screen?
No Answer is Posted For this Question
Be the First to Post Answer
How can a number be converted to a string?
What is the difference between strcpy() and memcpy() function in c programming?
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
WHAT IS FLOAT?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
write a c program for swapping two strings using pointer
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
What is the scope of static variables in c language?
What are the disadvantages of external storage class?
List some basic data types in c?
what is array?
#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); }