Can stdout be forced to print somewhere other than the screen?
No Answer is Posted For this Question
Be the First to Post Answer
What is an lvalue in c?
What is the difference between fread buffer() and fwrite buffer()?
What is the size of enum in bytes?
Explain what’s a signal? Explain what do I use signals for?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
How can I find out if there are characters available for reading?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Explain what are the different data types in c?
How can you convert integers to binary or hexadecimal?
what is an array
What is a constant and types of constants in c?