Anonymous
I’ am not disperate but I nervous because the program did’n start...
Anonymous
Anonymous
Indeed I’ll move on in another project
Anonymous
Probably...
Anonymous
I don’t now, I’ am a beginner what type of project I can start an finish?
Jussi
klimi
klimi
Just do it with little steps
klimi
1. Open window
2. Draw something
3. Make movement
Etc
klimi
I have same problem with giving up
Mat
Anonymous
Thanks to all for the ideas
Anonymous
mr
Send books of data structures plss
klimi
mr
Why
klimi
Why would I buy you a book?
klimi
I don't print money
mr
Then send pdf if available
klimi
Dude
klimi
If I would buy you a book... If I buy it to everyone I wouldn't have any money
Etaoin
John
Lol wtf
Mat
Anonymous
Please can anyone suggest me a project for my final year
Anonymous
I want a dynamic topics based project
Mickyas
/C
Anonymous
Hi
klimi
hi
D
I need help..
I want to know how to get mobile number from email address?
D
Can any one help me
klimi
how?
klimi
like you feed it email... and it convers it to number?
D
Yes
klimi
doesnt exist
D
😞
klimi
its privacy violation
D
Oh yeah
klimi
+
klimi
you just cant convert it
Anonymous
I started learning multithreading
Anonymous
but got an error
Anonymous
as thread was not declared in this scope
Anonymous
in main
Anonymous
using C++ 11
Anonymous
my program runs on Online compilers
Roxifλsz 🇱🇹
Anonymous
#include<iostream>
#include<thread>
using namespace std;
void function_1()
{
cout<<"Hello World!"<<endl;
}
int main()
{
thread t1(function_1);
t1.join();
return 0;
}
Anonymous
It is running in online compiler
Anonymous
but not in codeblocks
olli
but not in codeblocks
What's your compiler?
You are likely to use an old compiler that does not use c++11 by default
Mat
Mat
Not an online compiler
Deni
but not in codeblocks
Mh if you are using Windows with codeblocks its normal that not works, try with Linux
klimi
what
klimi
codeblocks on windows uses mingw
Deni
Lol try to use threads on Windows
Mat
Deni
Not works, read in msdn
Mat
Incorrect because he's using an online compiler
klimi
Deni
how is it related?
Read the code he include thread that isn't a library supported in mingw
klimi
why?
klimi
i dont get it
klimi
why it wouldnt been supported
klimi
its c++11
klimi
on internet ppl says it works...
Deni
I suggest to read how ti use threads on Windows https://docs.microsoft.com/en-us/windows/desktop/procthread/creating-threads
klimi
klimi
thats msvc++
klimi
not mignw
Deni
Try with mingw you will take some errors
Deni
Or in my case that not works
klimi
ill try it in wine then... i dont have windows machine
klimi
[klimi@klimistation ~]$ g++ main.cpp -std=c++11 -lpthread
[klimi@klimistation ~]$ ./a.out
Hello World!
klimi
did you link lib?