Once I have used freopen, how can I get the original stdout (or stdin) back?
No Answer is Posted For this Question
Be the First to Post Answer
Why use int main instead of void main?
What is an auto keyword in c?
Explain function pointer with exapmles.
What's wrong with "char *p; *p = malloc(10);"?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What does *p++ do? What does it point to?
How can I get random integers in a certain range?
please give code for this 1 2 4 7 11 16
What is difference between static and global variable in c?
How can I handle floating-point exceptions gracefully?