Mahim
Ok thank you
Engineer
https://www.youtube.com/watch?v=bWH-nL7v5F4
ברני
https://www.youtube.com/watch?v=bWH-nL7v5F4
Why won't you use a real app instead of a website?
Pest Control Service
oh , multi threading is a hell
multi threading before c++11 is wild west
Engineer
Why won't you use a real app instead of a website?
🤦‍♀It is not a website, it is a tutorial. It is showing how to use gdb on Mac and Linux, to debug problems with code, when code compiled with gcc.
mov $22, %rax
https://github.com/reo7sp/tgbot-cpp Is this library good for programming bots in cpp?
Andrew
multi threading before c++11 is wild west
im learning multithreading in ansi C
Engineer
im learning multithreading in ansi C
Have you heard of https://github.com/edvardsp/libproxc
Engineer
https://www.cs.kent.ac.uk/projects/ofa/c++csp/
Engineer
https://www.cs.kent.ac.uk/projects/ofa/c++csp/
C++CSP2 Easy Concurrency for C++ Introduction Multicore processors have arrived on the desktop, and developers are beginning to want ways of exploiting this parallelism. The standard locks-and-threads (or monitors and threads) approach is easy to get wrong, and difficult to understand. C++CSP2 is a library that provides easy mechanisms for concurrent C++ programming. The CSP-derived approach is to eliminate sharing of data between concurrent processes. Processes are separate pieces of code that communicate explicitly via channels. When programming a process, you only need to consider the channel communications (and other synchronisations, such as barriers), and do not need to worry about race hazards involving shared data or scheduling corner-cases.
Engineer
Oh OK sorry
🤓Thanks Barney. What made you think it was a website? Are you doing development on a Mac or Linux machine?
ברני
🤓Thanks Barney. What made you think it was a website? Are you doing development on a Mac or Linux machine?
No, usually when I'm not home I'm using GDB website, I thought you were talking about that..
Engineer
No, usually when I'm not home I'm using GDB website, I thought you were talking about that..
Can you share the web link please? Why don't you use it natively?
.
How can i add a line to file.txt There are lines in file.txt
خدمات طلابية ™ 💯
Hello
خدمات طلابية ™ 💯
Ok
+
Hi, guys I want to access qt ui outside of my qt main class i used qt signal and slot for doing this, but im not sure if im doing it in right way... can anyone take a look at my code? https://codereview.stackexchange.com/questions/254443/access-qt-ui-from-other-class
ברני
Can you share the web link please? Why don't you use it natively?
https://www.onlinegdb.com/online_c_compiler I'm usually using mvc, I'm on GDB to share here my struggles
Sandro
@andrew1923 the patterno doesn't work 😏
Hermann
anyone use ns3?
YVEF
Hi guys. just a part of holy wars but where you put asterisk for a pointer type? int* ptr or int *ptr ? 😂
Hadaward 'Solly'
void * buffer; *smacks table*
Pavel
void * buffer; *smacks table*
int*p; because every symbol costs 😂
Anonymous
Thank you for your help!
Anonymous
Guys, who can help me? Because of the low quality of the online study, we are 400 student are having final test in c++ and No one of them can answer even a good answers Please guys I need some one who can help us Just to solve some questions of codding in C++ If you help me that means that you helped more than 400 student, they will be thank full for you
Hadaward 'Solly'
Anonymous
Please 😭💔🥺
Hadaward 'Solly'
if the course is garbage, then you should've come and ask about resources yourself before the exam; not while doing it.
Anonymous
We tryed so hard
Anonymous
But we dont think so that we can do well in the Exam
Anonymous
We intered every youtube learning codding
Anonymous
But we cant
Anonymous
😞💔
Anonymous
Please guys , any one 😭💔💔 400 student will be thank full for you
Anonymous
😞💔
I recommend yo use C++ programming by D.S Malik. It takes you through c++ like an absolute baby.
Anonymous
We dont have time, its after 5 hours
Anonymous
🥺💔
Anonymous
And i think its just a simple questions for you, But its so hard for us to solve
Anonymous
Please 😞💔
Anonymous
🥺💔
Well then pray for a miracle or you just work on the questions and send your work to the group so we can help correct your errors
Anonymous
😕💔
Anonymous
Both are right
Hadaward 'Solly'
Both are right
they are asking your preference for entertainment purposes
Anonymous
Well then pray for a miracle or you just work on the questions and send your work to the group so we can help correct your errors
We will dont solve the questions in C++ , we will solve it just like a text , so there is no chance for errors
Hadaward 'Solly'
you've got to be kidding me
Anonymous
Im not
net
what s your questions, I'm little interested
🕸 03xploit 🕸
Hi How to combine c++ project in c# project ?without creat dll and call to c# project
Ludovic 'Archivist'
Basically, int* ptr; means for you pointer is a type modifier int *ptr; means for you pointer is a variable modifier
olli
Basically, int* ptr; means for you pointer is a type modifier int *ptr; means for you pointer is a variable modifier
this can be misleading tho, when a is a pointer but b is not. So it's not really the type that's modified. int* a, b;
Crow
it's the same, they are both pointers to integer. The difference is that when declaring more than one variable on the same line, it is more explicit with int *ptr to specify that this variable is an integer pointer
Nish
hey folks, ive been using linux for years now and its a part of my everyday job. I want to get into systems programming but I want to understand the internals before i go there. For example, there are lots of guides on "socket programming with c++ / python and what not", but it doesn't actually help if one doesn't know what a socket really is and what they're trying to build. I've looked at "the linux programming interface" books but I can't understand why would you use certain sys calls and so on. This may sound a little confusing because i am a bit confused myself. Are there any good systems programming books that go into the details of everything?
Crow
Search the books of that author
Nish
This sounds more on the network and communication rather than the OS / system behavior, would that be correct?
Crow
Yes
Crow
But you have another one
Crow
Written by that author, Unix Network Programming
Nish
Advanced programming in the Unix environment - this looks really interesting
Crow
Yes, it is
Ashish
@shubhamtiwari17 hyy
Harsh
Does anybody know VSCode extension for 8085 Assembly line? Currently using GNUSim8085, but it'd be better in VSCode as GNUSim crashes on its own.
SaymyName
Hey everyone I want learn C language Can anyone suggest any free good course on YouTube or any other platforms?
Anonymous
freecodecamp.org
Anonymous
freecodecamp.org
This is not for C
SaymyName
sololearn
.
How i can do linked list on c
.
What?
Anonymous
What?
Define a struct
Anonymous
struct ll { void *data; void *prev; void *next; }