Cursos
Cursos
Compilador de Código
Compilador de Código
Debatir
Precios
Teams
Iniciar sesión
Registrarse
Menu
Sesiones de PyR
Buscar
Buscar
Haz una pregunta
Haz una pregunta
Well which is the most advanced language ever developed.....??
<iostream>
-2 Votos
1 Respuesta
28th Sep 2018, 11:52 AM
Ishan Sen
#include <iostream> using namespace std; what is use ?
namespace
-1 Voto
2 Respuestas
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 Votos
7 Respuestas
19th May 2018, 11:13 AM
Sourav Dutta
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 9; }
micheal
2 Votos
6 Respuestas
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 Voto
1 Respuesta
27th Jan 2017, 9:55 AM
Amr Monsef
What is the difference between <iostream> and <iostream.h>?
c++
0 Votos
1 Respuesta
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 Votos
12 Respuestas
12th Sep 2018, 5:50 PM
Arun
#include <iostream> using namespace std; int main() { int x=~1; cout<<x; }
1
0 Votos
7 Respuestas
13th Jan 2017, 9:17 AM
Hisani msigwa
А для чего в c++ надо прописывать #include <iostream> ?
c++
0 Votos
2 Respuestas
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 Voto
5 Respuestas
28th May 2018, 5:10 PM
OLUWAROTIMI LUKMON OJO
What is the difference between <iostream> and <iostream.h> in c++?
c++
1 Voto
1 Respuesta
11th Mar 2019, 3:31 AM
Json Vcente
Can I use any other header file instead of <iostream> ?
c++
1 Voto
4 Respuestas
14th Jan 2017, 4:01 PM
adiba sharif
define "<iostream>" please !!!!!
<iostream>
c++
0 Votos
3 Respuestas
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 Votos
2 Respuestas
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 Votos
9 Respuestas
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 Votos
6 Respuestas
16th Aug 2018, 11:46 AM
Jakhongir
<string> vs <iostream> : is string library inside iostream header !?
data-types
1 Voto
1 Respuesta
4th May 2020, 1:19 PM
Jeff
What is the difference between cout,cerr and clog?
<iostream>
c++
3 Votos
2 Respuestas
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 Votos
8 Respuestas
23rd Jul 2018, 3:49 PM
Mohamed Azeem
Why we use <iostream> instead of <iostream.h>?? What's the difference between them?
c++
3 Votos
2 Respuestas
20th Jan 2018, 2:43 PM
Amit Pokhrel
An error??
<iostream>
include
-1 Voto
5 Respuestas
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 Votos
3 Respuestas
3rd May 2019, 1:06 PM
Fernandi Rohmadiansyah
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; }
java
-3 Votos
5 Respuestas
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 Votos
2 Respuestas
18th Oct 2016, 8:40 PM
Rebeka Asryan
Whats the difference beetwen <iostream> <char> <bool> (i didnt get in sololearn)
c++
1 Voto
2 Respuestas
6th May 2020, 11:58 AM
Buneodbek
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
code
problem
0 Votos
4 Respuestas
2nd Feb 2022, 7:49 AM
ᴮᴰ⁷¹〆ᴀʟᴀмιɴ﷼ツ࿐
How can void b used insted of int
<iostream>
include
0 Votos
2 Respuestas
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 Votos
8 Respuestas
9th Mar 2017, 4:09 PM
SIGMA
difference between switch n iostream
<iostream>
<switch>
1 Voto
2 Respuestas
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 Votos
10 Respuestas
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 Voto
12 Respuestas
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 Voto
7 Respuestas
30th May 2018, 8:21 AM
Bunny
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
problem
-1 Voto
3 Respuestas
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 Voto
4 Respuestas
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 Votos
6 Respuestas
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 Votos
9 Respuestas
29th Mar 2018, 6:32 AM
JeClives
#include <iostream> int main(int argc, char **argv) { std::cout << 25u - 50; return 0; }
c++
-2 Votos
5 Respuestas
15th Dec 2017, 9:35 AM
nirav malaviya
#include <iostream> #include <string> using namespace std; class myClass { public: void setName(string x) {
encapsulation
0 Votos
3 Respuestas
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 Voto
2 Respuestas
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 Voto
1 Respuesta
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 Votos
3 Respuestas
17th Sep 2020, 5:32 AM
Nurul Izzati
#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 Voto
2 Respuestas
7th Feb 2017, 1:02 PM
Vaaru
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 11; } is something wrong
program
0 Votos
8 Respuestas
18th May 2018, 3:08 PM
Shivam Kumar
Still not understanding what exactly <iostream> is, like on its function. ELI5?
c++
0 Votos
1 Respuesta
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 Voto
6 Respuestas
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 Voto
2 Respuestas
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 Voto
4 Respuestas
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 Voto
4 Respuestas
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 Votos
4 Respuestas
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 Votos
3 Respuestas
9th Mar 2018, 2:58 PM
Ronald Mbanjwa
Haz una pregunta
Haz una pregunta
Haz una pregunta
Haz una pregunta
< Anterior
1
2
3
...
5
Siguiente >
En tendencia hoy
Discrete-Time Signal Representation
0 Votes
Hey, is the "Snowflake" mission not working?
0 Votes
Bug in the answers checking algorithms?
1 Votes
Detach thread exception
1 Votes
Qt timer timeout
0 Votes
Not video
0 Votes
How to make a 2d game
0 Votes
I want to learn Lua but don’t know where
2 Votes
Not image in the page
1 Votes
Html
1 Votes