Member • Sep 8, 2008
strange thing in VC++
#include "h1.h"
int main()
{
cout<<"\nHello \n";
printf("\nWelcome!!!");
return 0;
}
strange thing is that "welcome" gets displayed first and "hello" thereafter....
why is "welcome" getting executed first??
i have included stdio.h and iostream.h in h1.h.
any suggestions?