Author
shabbir ( Go4Expert Founder )
Shabbir is a developer in the field of Applications, web as well as database designing and is devoted to the optimization and usability of the code. He maintains Programming forum and is a C++ addict.
Recent Articles
- Vectors in C++, Started by blitzcoder in C-C++
- Making a screensaver in C++, Started by blitzcoder in C-C++
- Detecting errors using CRC-32 (for IEEE802.3) code, Started by blitzcoder in C-C++
- Get BGI Graphics To Work In Dev-Cpp, Started by blitzcoder in C-C++
- Find roots of any linear algebraic nth order equation by Regula Falsi method, Started by coderzone in C-C++
Similar Articles
Code: cpp
#include <iostream.h>
#include <stdio.h>
void main()
{
cout<<"hello";
printf("hi");
}
The reason behind this is cout is not flushed and you can get the desired out put by doing
Code: cpp
#include <iostream.h>
#include <stdio.h>
void main()
{
cout<<"hello";
flush(cout);
printf("hi");
}
Thanks
Shabbir Bhimani

















Linear Mode
