+ 2
Which is correct?? #include<iostream> or #include<iostream>.h
11 Answers
+ 6
Nikesh: iostream.h is outdated. modern compilers wont allow you to put that.
#include <iostream> is good.
+ 4
in turbo cpp it is #include<iostream.h>
+ 1
Garme already made the essential point... Turbo C++ has been discontinued since *2006*... So it's hopelessly outdated. I sincerely hope that you guys learn to program on other compilers as well... there better ones that are free...
+ 1
guys use this compiler cppdroid for android's phone
+ 1
#include<iostream>
0
#include<iostream> is correct way....
0
in cppdroid
#include<iostream>
0
#include<iostream.h>
0
in Dev C++ you go for
#include<iostream>
- 2
K. Thanx
- 2
#include"iostream. h"
#include"iostream"
#include<iostream. h>
#include<iostream>
as you like