How do you redirect a standard stream?
No Answer is Posted For this Question
Be the First to Post Answer
What is the method to save data in stack data structure type?
What is the difference between malloc() and realloc()?
Write a program to check armstrong number in c?
#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); }
How many keywords (reserve words) are in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
What happens if header file is included twice?
What is the difference between text and binary modes?
What are the properties of union in c?
How Many Header Files in c?
write a string copy function routine?