Pete
Algorithms
Anonymous
Can we run image and sound in c++ simultaneously
Anonymous
???
Anonymous
uselss grp
Anonymous
Dima
uselss grp
You are useless
Suraj
/notes
Suraj
/cpp
Suraj
#cpp
Ilya
/get stop-teaching-c
Dima
/warn @ke1v1n000 this is cxx group
Ибраги́м
https://www.youtube.com/watch?v=FRTmkDiW5MM
Sunny
I want to learn c++ from starting i mean from basic can you guys plzz suggest me a website aur any other source from where i get the c++ knowledge from basic (beginners)
Sunny
Plzz help me guys..
Sunny
Or any YouTube channel
Sunny
But i don't find any from Google
Sunny
Plz help me out
Undecidable
#include<iostream> #include<conio.h> using namespace std; void binary(int a[],int lb,int ub,int x) { int mid; while(lb<=ub) { mid=(lb+ub)/2; if(a[mid]==x) { puts("yes."); return; } else if(x<a[mid]) binary(a,lb,mid-1,x); else if(x>a[mid]) binary(a,mid+1,ub,x); } if(lb>ub) puts("not."); } int main() { int a[15],n,i,x; printf("Enter the size of array: "); scanf("%d",&n); printf("Enter elements: "); for(i=0;i<n;i++) scanf("%d",&a[i]); printf("Enter data: "); scanf("%d",&x); binary(a,0,n-1,x); return 0; }
Sunny
#cppbookguide
From where i will get this book ?
Sunny
BUY
Full name of the book ?
Anonymous
Full name of the book ?
Fuck, dude. Open the LINK
Anonymous
Are you blind or what?
Anonymous
https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list
Undecidable
#include<iostream> #include<conio.h> using namespace std; void binary(int a[],int lb,int ub,int x) { int mid; while(lb<=ub) { mid=(lb+ub)/2; if(a[mid]==x) { puts("yes."); return; } else if(x<a[mid]) binary(a,lb,mid-1,x); else if(x>a[mid]) binary(a,mid+1,ub,x); } if(lb>ub) puts("not."); } int main() { int a[15],n,i,x; printf("Enter the size of array: "); scanf("%d",&n); printf("Enter elements: "); for(i=0;i<n;i++) scanf("%d",&a[i]); printf("Enter data: "); scanf("%d",&x); binary(a,0,n-1,x); return 0; } why it goes in infinite loop.
Dima
/warns @toxic42pp
Dima
how to check if he was banned?
Dima
@toxic42pp is muted and I am not sure if he was banned or what
Dima
/unmute @toxic42pp
Undecidable
Learn how to debug
but still i can't understand.
Sunny
Anyone knows any YouTube channel for learn C++ for beginners??
MᏫᎻᎯᎷᎷᎬᎠ
I know only books
I_Interface
Anyone knows any YouTube channel for learn C++ for beginners??
It's so hard to open youtube and type this into SEARCH FIELD, yes ?
MᏫᎻᎯᎷᎷᎬᎠ
Go read Jumping into C++ It's the best for you
Sunny
It's so hard to open youtube and type this into SEARCH FIELD, yes ?
If you know just tell other wise shut your mouth
MᏫᎻᎯᎷᎷᎬᎠ
Sunny
Sry
MᏫᎻᎯᎷᎷᎬᎠ
👍
I did help you
Sunny
Sorry
klimi
Anyone knows any YouTube channel for learn C++ for beginners??
Anything will do.... If you think it doesn't make sense, change it. Go browse reddit, stack overflow
MᏫᎻᎯᎷᎷᎬᎠ
Sunny
Sry
Sunny
Everyone
MᏫᎻᎯᎷᎷᎬᎠ
Everyone
You are looking for the best channel Based on others experience, am I right?!
Anonymous
Admin, C# descussion allowed here?
Anonymous
klimi
MᏫᎻᎯᎷᎷᎬᎠ
Yea
Here is a thing In YouTube There are tutorials for beginners It's easy to search there Just type "C++ beginners tutorials" or anything similar You'll get a lot of results Just pick the most subscribed channel or the top viewed one. It's a good practice to search for your own things, you'll need it later. In the future, if you get hired, developers on your team don't have much time for babysitting
MᏫᎻᎯᎷᎷᎬᎠ
I think the is the most complete answer for your situation
Sunny
👍
Anonymous
Thank u👍
Bhaskar
Yup, i totally agree on that
Nassrullah
Wise and beautiful !
Dima
What the heck
Ariana
its better to read books, cause atleast in the books there are some exercise that makes you code
ehh i find reading books and programming kinda disconnected documentation then playing around feels more natural for me tho for a new person idk tbh