Kursy
Kursy
Kompilator kodu
Kompilator kodu
Dyskusja
Cennik
Zespoły
Zaloguj się
Zarejestruj się
Menu
Dyskusje Q&A
Szukaj
Szukaj
Zadaj pytanie
Zadaj pytanie
Well which is the most advanced language ever developed.....??
<iostream>
-2 głosów
1 Odpowiedź
28th Sep 2018, 11:52 AM
Ishan Sen
#include <iostream> using namespace std; what is use ?
namespace
-1 Głos
2 odpowiedzi
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 głosów
7 odpowiedzi
19th May 2018, 11:13 AM
Sourav Dutta
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 9; }
micheal
2 głosów
6 odpowiedzi
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 Głos
1 Odpowiedź
27th Jan 2017, 9:55 AM
Amr Monsef
What is the difference between <iostream> and <iostream.h>?
c++
0 głosów
1 Odpowiedź
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 głosów
12 odpowiedzi
12th Sep 2018, 5:50 PM
Arun
#include <iostream> using namespace std; int main() { int x=~1; cout<<x; }
1
0 głosów
7 odpowiedzi
13th Jan 2017, 9:17 AM
Hisani msigwa
А для чего в c++ надо прописывать #include <iostream> ?
c++
0 głosów
2 odpowiedzi
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 Głos
5 odpowiedzi
28th May 2018, 5:10 PM
OLUWAROTIMI LUKMON OJO
What is the difference between <iostream> and <iostream.h> in c++?
c++
1 Głos
1 Odpowiedź
11th Mar 2019, 3:31 AM
Json Vcente
Can I use any other header file instead of <iostream> ?
c++
1 Głos
4 odpowiedzi
14th Jan 2017, 4:01 PM
adiba sharif
define "<iostream>" please !!!!!
<iostream>
c++
0 głosów
3 odpowiedzi
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 głosów
2 odpowiedzi
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 głosów
9 odpowiedzi
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 głosów
6 odpowiedzi
16th Aug 2018, 11:46 AM
Jakhongir
<string> vs <iostream> : is string library inside iostream header !?
data-types
1 Głos
1 Odpowiedź
4th May 2020, 1:19 PM
Jeff
What is the difference between cout,cerr and clog?
<iostream>
c++
3 głosów
2 odpowiedzi
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 głosów
8 odpowiedzi
23rd Jul 2018, 3:49 PM
Mohamed Azeem
Why we use <iostream> instead of <iostream.h>?? What's the difference between them?
c++
3 głosów
2 odpowiedzi
20th Jan 2018, 2:43 PM
Amit Pokhrel
An error??
<iostream>
include
-1 Głos
5 odpowiedzi
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 głosów
3 odpowiedzi
3rd May 2019, 1:06 PM
Fernandi Rohmadiansyah
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; }
java
-3 głosów
5 odpowiedzi
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 głosów
2 odpowiedzi
18th Oct 2016, 8:40 PM
Rebeka Asryan
Whats the difference beetwen <iostream> <char> <bool> (i didnt get in sololearn)
c++
1 Głos
2 odpowiedzi
6th May 2020, 11:58 AM
Buneodbek
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
code
problem
0 głosów
4 odpowiedzi
2nd Feb 2022, 7:49 AM
ᴮᴰ⁷¹〆ᴀʟᴀмιɴ﷼ツ࿐
How can void b used insted of int
<iostream>
include
0 głosów
2 odpowiedzi
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 głosów
8 odpowiedzi
9th Mar 2017, 4:09 PM
SIGMA
difference between switch n iostream
<iostream>
<switch>
1 Głos
2 odpowiedzi
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 głosów
10 odpowiedzi
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 Głos
12 odpowiedzi
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 Głos
7 odpowiedzi
30th May 2018, 8:21 AM
Bunny
#include <iostream> using namespace >std; int main() { cout << "C/n+/n+">>endl; return 0; }
problem
-1 Głos
3 odpowiedzi
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 Głos
4 odpowiedzi
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 głosów
6 odpowiedzi
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 głosów
9 odpowiedzi
29th Mar 2018, 6:32 AM
JeClives
#include <iostream> int main(int argc, char **argv) { std::cout << 25u - 50; return 0; }
c++
-2 głosów
5 odpowiedzi
15th Dec 2017, 9:35 AM
nirav malaviya
#include <iostream> #include <string> using namespace std; class myClass { public: void setName(string x) {
encapsulation
0 głosów
3 odpowiedzi
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 Głos
2 odpowiedzi
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 Głos
1 Odpowiedź
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 głosów
3 odpowiedzi
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 głosów
8 odpowiedzi
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 Głos
2 odpowiedzi
7th Feb 2017, 1:02 PM
Vaaru
Still not understanding what exactly <iostream> is, like on its function. ELI5?
c++
0 głosów
1 Odpowiedź
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 Głos
6 odpowiedzi
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 Głos
2 odpowiedzi
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 Głos
4 odpowiedzi
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 Głos
4 odpowiedzi
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 głosów
4 odpowiedzi
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 głosów
3 odpowiedzi
9th Mar 2018, 2:58 PM
Ronald Mbanjwa
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
< Do tyłu
1
2
3
...
5
Dalej >
Popularne dzisiaj
MY SNAKE GAME CODE ISN'T working of python
4 Votes
Java question Can anyone help me with the test case situation in that problem like 3 test case is pass but other are not 🤦🤦
4 Votes
How to improve code readability
0 Votes
Functions
1 Votes
App
0 Votes
I NEED to make a game
0 Votes
Please help with the output
0 Votes
Grouping data is not working
0 Votes
Use of flag
0 Votes
Python input() function is strange (a bug or a feature?)
1 Votes