Courses
Courses
Code Compiler
Code Compiler
Discuss
Pricing
Teams
Log in
Register
Menu
Q&A Discussions
Search
Search
Ask a question
Ask a question
Well which is the most advanced language ever developed.....??
<iostream>
-2 Votes
1 Answer
28th Sep 2018, 11:52 AM
Ishan Sen
#include <iostream> using namespace std; what is use ?
namespace
-1 Vote
2 Answers
5th Oct 2020, 7:21 AM
Ganesh Nanaso Rupnawar
In C++ <iostream> is a class or header file or something else?
c++
classes
header
iostream
2 Votes
7 Answers
19th May 2018, 11:13 AM
Sourav Dutta
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 9; }
micheal
2 Votes
6 Answers
2nd Nov 2018, 6:51 AM
D ̲E ̲S ̲S ̲I ̲E ̲- ̲B ̲A ̲H ̲I ̲R ̲U ̲
<iostream> and <iostream.h> ?? /////cout and std::cout ?????
c++
1 Vote
1 Answer
27th Jan 2017, 9:55 AM
Amr Monsef
What is the difference between <iostream> and <iostream.h>?
c++
0 Votes
1 Answer
24th Sep 2016, 6:27 AM
Hemprasanth Karunakaran
#include <iostream> using namespace std; int main() { int a=0,u=0; u=(a) * ++a; cout<<u; }
c++
rocks
3 Votes
12 Answers
12th Sep 2018, 5:50 PM
Arun
#include <iostream> using namespace std; int main() { int x=~1; cout<<x; }
1
0 Votes
7 Answers
13th Jan 2017, 9:17 AM
Hisani msigwa
А для чего в c++ надо прописывать #include <iostream> ?
c++
0 Votes
2 Answers
23rd Jan 2022, 3:51 PM
Rutr40 live Юмагужин
Am a beginner.... I need help on c++ i tryed my first code it eas not running...
<iostream>
include
1 Vote
5 Answers
28th May 2018, 5:10 PM
OLUWAROTIMI LUKMON OJO
What is the difference between <iostream> and <iostream.h> in c++?
c++
1 Vote
1 Answer
11th Mar 2019, 3:31 AM
Json Vcente
Can I use any other header file instead of <iostream> ?
c++
1 Vote
4 Answers
14th Jan 2017, 4:01 PM
adiba sharif
define "<iostream>" please !!!!!
<iostream>
c++
0 Votes
3 Answers
26th Sep 2020, 11:18 AM
Yash Wathrey
What is the difference between #include <iostream> & #include<stdio.h> & #include<conio.h> ?
c
include
iostream
stdio.h
3 Votes
2 Answers
12th Jan 2018, 4:46 PM
Satyam Kumar Singh
#include <iostream> using namespace std; int main() { int a=10,b; b=++a+(++a); cout<<b; return 0; }
c++
increment
5 Votes
9 Answers
28th Aug 2017, 1:07 PM
Rishabh Rai
#include <iostream> using namespace std; int main() { int x=5 , y=6; if (++x>4 ||++y<8) { cout <<x<<y<<endl;
c++
3 Votes
6 Answers
16th Aug 2018, 11:46 AM
Jakhongir
<string> vs <iostream> : is string library inside iostream header !?
data-types
1 Vote
1 Answer
4th May 2020, 1:19 PM
Jeff
What is the difference between cout,cerr and clog?
<iostream>
c++
3 Votes
2 Answers
25th Aug 2017, 6:07 PM
ziad hany
#include <iostream> using namespace std; int main () { int op,units,pay; cout<<"\n erter youer units\n"; cin>>units
c++
2 Votes
8 Answers
23rd Jul 2018, 3:49 PM
Mohamed Azeem
Why we use <iostream> instead of <iostream.h>?? What's the difference between them?
c++
3 Votes
2 Answers
20th Jan 2018, 2:43 PM
Amit Pokhrel
An error??
<iostream>
include
-1 Vote
5 Answers
7th Sep 2017, 2:47 PM
Sudheer Tripathi
#include <iostream> void main(void ) { float PI=3.14,R,L,K,V; cout<<"Masukan harga R:"<<endl; cin>>R; K=2*PI
objects
0 Votes
3 Answers
3rd May 2019, 1:06 PM
Fernandi Rohmadiansyah
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; }
java
-3 Votes
5 Answers
25th Nov 2016, 3:54 AM
Ahmet Bozkurt
Can I use string data type only by including <iostream> library? (without #include <string>)
data
include
string
type
7 Votes
2 Answers
18th Oct 2016, 8:40 PM
Rebeka Asryan
Whats the difference beetwen <iostream> <char> <bool> (i didnt get in sololearn)
c++
1 Vote
2 Answers
6th May 2020, 11:58 AM
Buneodbek
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
code
problem
0 Votes
4 Answers
2nd Feb 2022, 7:49 AM
ᴮᴰ⁷¹〆ᴀʟᴀмιɴ﷼ツ࿐
How can void b used insted of int
<iostream>
include
0 Votes
2 Answers
25th Oct 2018, 6:17 AM
Divya
#include <iostream> #include<string> using namespace std; int main() { string a; cin>>a; cout<<a; return 0; }
c++
strings
4 Votes
8 Answers
9th Mar 2017, 4:09 PM
SIGMA
difference between switch n iostream
<iostream>
<switch>
1 Vote
2 Answers
10th Sep 2016, 6:10 AM
Shreyas Jumledar
#include <iostream> using namespace std; int main() { int a[]={3,5,2,1}; for(int i=1;i<5;i++) { a[0]=a[i]+1; } cout<<a[0];
c++
0 Votes
10 Answers
23rd Dec 2016, 1:46 PM
Sumit Lokhande
#include <iostream> using namespace std; int main() { for (int x=1; x<10; x++) { if (x==2){ continue; } if (x==5){ break; } cou
c++
programming
1 Vote
12 Answers
30th Dec 2022, 3:45 PM
Alex Boso Nzaphila
#include <iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; c=a+b; c=a-b; cout<<c; return 0; }
c++
1 Vote
7 Answers
30th May 2018, 8:21 AM
Bunny
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
problem
-1 Vote
3 Answers
2nd Feb 2022, 7:04 AM
ᴮᴰ⁷¹〆ᴀʟᴀмιɴ﷼ツ࿐
#include <iostream> #include <iomanip> using namespace std; int main(); { int n[10]; for(int i=0;i<10;i++) cout<<"element"<<s
no
-1 Vote
4 Answers
18th Aug 2020, 3:40 AM
Mairaj jamali
when to use <iostream.h> and when to use <iostream> would anyone please tell about this!!
c++
0 Votes
6 Answers
9th Jul 2016, 2:35 PM
Sujan
#include <iostream> using namespace std; int main() { int x = 15/(3*(5/3)); cout << x; return 0;} D output wz 5 hw
operators
3 Votes
9 Answers
29th Mar 2018, 6:32 AM
JeClives
#include <iostream> int main(int argc, char **argv) { std::cout << 25u - 50; return 0; }
c++
-2 Votes
5 Answers
15th Dec 2017, 9:35 AM
nirav malaviya
#include <iostream> #include <string> using namespace std; class myClass { public: void setName(string x) {
encapsulation
0 Votes
3 Answers
21st May 2020, 6:22 PM
Salini Selvam
#include <iostream> using namespace std; int main() { //print "C++ is cool" return 0; }
answer
it
please
1 Vote
2 Answers
7th Oct 2021, 7:05 AM
Trupti Giri
#include <iostream> using namespace std; int main() { cout<<12+"good morning\n"-24; return 0; }
c++
1 Vote
1 Answer
4th May 2017, 6:20 PM
siddiqui junaid
#include <iostream> using namespace std; int main(){ int age; cout<<"Please enter age"; cin>>age; int group; while(ag
c++
2 Votes
3 Answers
17th Sep 2020, 5:32 AM
Nurul Izzati
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 11; } is something wrong
program
0 Votes
8 Answers
18th May 2018, 3:08 PM
Shivam Kumar
#include <iostream> int main() { int i=8,j=3,x; x=i++; j=++i; cout<<x; cout<<--j<<j--<<++j; return 0;}
c++
output
1 Vote
2 Answers
7th Feb 2017, 1:02 PM
Vaaru
Still not understanding what exactly <iostream> is, like on its function. ELI5?
c++
0 Votes
1 Answer
12th Jul 2016, 6:31 AM
JustSomeGuy
#Include <Iostream> using namespace std; { Int num=1 While(num<6) { Cout<< "Number"<< num<<endl; Num=num+3; } }
c++
1 Vote
6 Answers
12th Apr 2017, 7:12 PM
Abdi
#include <iostream> using namespace std; int main() { int a[]={1,2,3,4}; for(int x=0;x<4;x++) { a[0]+=a[x]; }
c++
1 Vote
2 Answers
3rd May 2019, 3:06 AM
Husaain Naqvi
#include <iostream> using namespace std; void printSomething(int x) { cout << x; } int main() { printSomething(42); }
<b>
1 Vote
4 Answers
14th Apr 2018, 12:20 PM
TOKOLLO COLLEN
The #include <iostream> still troubles me I haven't understand how to use it.please help me.
c++
1 Vote
4 Answers
11th Jul 2016, 1:22 PM
Denis George Nyamhanga
#include <iostream> using namespace std; int main() { int x=2; cout <<(x-++--x); return 1; }
c++
data-types
0 Votes
4 Answers
25th Sep 2016, 12:40 PM
Sourabh Goyal
How do you know when to use <iostream> & the one with an "h" <iostream.h>?
c++
2 Votes
3 Answers
9th Mar 2018, 2:58 PM
Ronald Mbanjwa
Ask a question
Ask a question
Ask a question
Ask a question
< Previous
1
2
3
...
5
Next >
Hot today
Hey, is the "Snowflake" mission not working?
0 Votes
Discrete-Time Signal Representation
1 Votes
Create a program that will allow user to input grades from five subjects and display the average grade.
1 Votes
Bug in the answers checking algorithms?
1 Votes
How to make a 2d game
1 Votes
Html
2 Votes
Not video
1 Votes
Detach thread exception
1 Votes
I want to learn Lua but don’t know where
3 Votes
Qt timer timeout
0 Votes