Anonymous
while loop is terminated when the conditional expression returns 0 1 2 3 Which is correct
Modestas
Anonymous
That's good
Jaaa
Anyone know what is the best youtube channel to learn linux command
Anonymous
Gfg
Jaaa
Gfg
Utube
Anonymous
Unix commands are a popular topic for videos/articles and tips of the day actually... I couldn't tell you which is best but you pick up tips over time.
Xudoyberdi
Anyone know what is the best youtube channel to learn linux command
Just search whatever command you wanna know. I don't think there is a specific channel.
Anonymous
Just search unix commands, some of those video tips do help you learn/remeber. For example cd - takes you to previous directory! So useful after first learning!
tannu
#cbook
kodes
How can I keep tabs on internship openings or off campus drives?
Anonymous
🌚
Anonymous
thx @thisisvedantsingh
Vedant
np bro
Vishal
I want to start Competetive programming. Can anyone help me?
Vishal
From where to practice
Vishal
I know basics and with some algorithms
Vishal
Thanks
Atharva
/notes
Generation Z
https://codeforces.com/problemset
What do this website deal with, because I see lots of content but i don't understand them,
Generation Z
I have been using W3schools.com, geeksforgeeks.com and little javatpoint.com
Anonymous
What do this website deal with, because I see lots of content but i don't understand them,
Sorry for linking to harder problems, look at the main landing page. It isn't a contest site but Rosetta_Code is nice too.
sofian
https://pastebin.com/ba2KgXn1
sofian
Hello, hi anyone can help me, i dont know where is the error. all the input displayed twice on the same page, subject code and subject name didnt showup. also cannot delete the input.
Jasur Fozilov 🐳
I want to start Competetive programming. Can anyone help me?
https://codeforces.com/blog/entry/23054 read this blog for details
Anonymous
/get cppbookguide
Anonymous
Hello, hi anyone can help me, i dont know where is the error. all the input displayed twice on the same page, subject code and subject name didnt showup. also cannot delete the input.
Is this an issue? cin>>subj; getline(cin,subj); User input is tricky and should be avoided to the extent reasonable...
Tekipeps
Anonymous
Hi, does anyone on YouTube have about (Draughts) videos or the code of this game?
Yazan
Hello is there anyone good with c++ and want to gain 20$
Yazan
Anyone please help
Anonymous
😂 seems like you have homework need to do?
z
/report spam homework
Yazan
And what someone help me please
Anonymous
with C++
If you were looking for an old video tutorial based on checkers, there were a few out there. YT watch?v= id codes: AiXccyupDeU vBFgyO-1yEg n9eT4JdXJQs jsrCsRMYC3U RUPKaMpN1WA VIaa3RuHxMQ etc. Otherwise the question is unclear...
PaAaAria
hello everyone, in this code, I got an error for char variable, does anybody know the reason? #include <iostream> using namespace std; int main() { char a = "b"; int e = 2.71; cout << a << e << endl; return 0; }
PaAaAria
what error do you have?
it's solved, thank you 🙏
Anonymous
it's solved, thank you 🙏
You can't initialise decimal values to integer type .you must use float or double but use float it should be better
Igor🇺🇦
You can't initialise decimal values to integer type .you must use float or double but use float it should be better
The error was assigning const char* to char. It should be 'b'. You can assign float to int, most compilers will warn you though.
PaAaAria
char a='b';
Thank you🙏
Chinaka
Hey wassup
cool man do u knw me
Anonymous
/get cppbookguide
Anonymous
https://nekobin.com/xikecicimi
AmR
I want mix std::thread with Qt how I can do that I try google bit don't find any info. Any help ?
Alex
AmR
OK. I will try
Alex
However QT provides own thread. QThread
AmR
However QT provides own thread. QThread
I know. But if std have it I will use it.
AmR
1 std 2 boost 3 Qt.
Igor🇺🇦
1 std 2 boost 3 Qt.
QThread plays better with Qt. It supports events and signals that are used extensively in Qt.
Pritam
Hi
Pritam
Whatsup
Pritam
#include<studio.h> #include<iostream> using namespace std; int main() { cout << "Hello friends"; return 0; }
Anonymous
no need of stdio.h
Anonymous
hmm
Sneha
can we search in pairs of pairs : pair< pair<int,int>, bool> pp; Like this - pair<int,int> p; if(i==0 || j==0) { p = make_pair(i,j); pp = make_pair(p,true); } else if (pp(i-1,j) == true || pp(i,j-1)==true) { p = make_pair(i,j); pp = make_pair(p,true); }
Yuval
Oh yeah thanks
Read about it and it's features. You don't need to invent the wheel
Sneha
Read about it and it's features. You don't need to invent the wheel
I know map but I thought I could do it with pairs somehow
Hycade
Hello...i have a question...can we write a data into file by using function...such like void function..?
Pritam
Hello... I have a question... Please tell me about 2d Array
Anonymous
Given an array A on size N, you need to find the number of ordered pairs (i,j) such that i<j and A[i]>A[j].
Anonymous
Why