k
any one suggest best book of mysql and data structure
Anonymous
Now we have
k
please suggest
k
Google
book friend
shopify
Is there anybody to teach me or guide me c+(
Anonymous
book friend
Y tend to search at google for "best whatever book"
klimi
shopify
C++
Anonymous
And look for some posts and recommendations about those books
klimi
#cppbookguide
klimi
#best-book
Anonymous
uzbek or english?
Chernykh
Just have join and already banned @K11M1
klimi
BTW love your userid
MilkBeforeCereal
lol
Chernykh
Restricted to write message
klimi
Restricted to write message
Did you confirm that you're not a bot
Dima
dafuq
klimi
lol
Oh hello
Chernykh
BTW love your userid
Hash from real nickname, wanna try to brute force?
MilkBeforeCereal
Oh hello
apologies, but I'm going to sleep actually, have to wake up in 3 hours
MilkBeforeCereal
hope you had a good day
klimi
Oh shit
I dont get it you're not banned but not a member
Chernykh
Seems like magic
klimi
Hey there Tim, and welcome to C/C++ : OT! How are you?
Chernykh
Yeah I saw it
Chernykh
Oh shit
But blyat'
klimi
._.
Chernykh
Can u send the invitation again?
klimi
Ths
Chernykh
Anonymous
С±)))
what is that?
Anonymous
just I am asking
Chernykh
C plus minus*
Chernykh
Not funny joke**
Anonymous
yep
Dima
/ban @affpath9 buy & sell free bans
Anonymous
#include<stdio.h> Main() { Printf("hii I am anil") ; return 0;
''' #include<stdio.h> int main() { Printf("hii I am anil") ; return 0; }
Anonymous
@hieunguyenduc you from VietNam
Anonymous
Guyyyyyyyyyysssss
Anonymous
I neeeeed help D:<
Anonymous
I dont get how to handle single processes while using nested forks
Anonymous
I already searched online but i still dont get it :/
Anonymous
@MestoloSecs What ?
Anonymous
@MestoloSecs What ?
What what ;-;?
Anonymous
What you help ?
Anonymous
if i have the following code: pid_t pid=fork(); pid_t pid2=fork(); pid_t pid3=fork(); Can i handle every single process just by doing if(pid==0)//son else if(pid2==0)//son else if(pid3==0)//son else //parent
Anonymous
sorry for the indentation
Anonymous
Hi I want to learn c programming
Anonymous
Please share the course
Anonymous
Hi I want to learn c programming
You can follow tutorialpoint
Anonymous
it have all
ex4_mp1e
Can i have a basic code for pointers in cpp..?
ex4_mp1e
you need instance code?
I need to learn pointers in c++.. So i need a basic code with pointers to understand
Anonymous
okayy
ex4_mp1e
👍👍
Anonymous
#include <iostream> using namespace std; int main () { int var = 20; // actual variable declaration. int *ip; // pointer variable ip = &var; // store address of var in pointer variable cout << "Value of var variable: "; cout << var << endl; // print the address stored in ip pointer variable cout << "Address stored in ip variable: "; cout << ip << endl; // access the value at the address available in pointer cout << "Value of *ip variable: "; cout << *ip << endl; return 0; }
Anonymous
ex4_mp1e
Thanks
Anonymous
you can inbox privaye for me
Anonymous
If you need
ex4_mp1e
Ok
Anonymous
//Two_Sum_Algorithm int main(){ vector<int>ve; vector<int>opve; int rang,inp; cout<<"enter the size of Array"<<endl; cin>>rang; for(int i=0;i<rang;i++){ cin>>inp; ve.push_back(inp); } int target; cout<<"enter the target "<<endl; cin>>target; //for (int i = 0; i <= ve.size()-1; i++) //cout << ve[i] << " "; for(int i=0;i<ve.size();i++){ int temp=0; temp=target-ve[i]; int tempinornot=0; for(int i = 0;i<opve.size()-1;i++){ if(opve[i]==temp){ tempinornot+=1; } } if(tempinornot==0){ opve[i]=temp; }else{ cout<<opve[i]<<" "<<i; } } // for (int i = 0; i <= ve.size()-1; i++) //cout << ve[i] << " "; return 0; }
Anonymous
am trying to implement 2 sum algorithm
Anonymous
find the error»»»
Anonymous
Segmentation fault (core dumped)
Anonymous
loop infinity
Mat
find the error»»»
Have you read the rules?
Mat
At least make it readable
Anonymous
can array verry large?
Anonymous
will I debug with gdb