Anonymous
Wojak
I have been into Competitive Programming using C++ since 2 Years and would continue but I want to switch to C++ embedded systems for my final year project. Any course/MOOC recommendations or any roadmap/guidelines from Experts would be great. Thanks.
Renan
https://youtu.be/QMYfkOtYYlg
That was interesting. For fun project. 😅 👍
Wojak
I have been into Competitive Programming using C++ since 2 Years and would continue but I want to switch to C++ embedded systems for my final year project. Any course/MOOC recommendations or any roadmap/guidelines from Experts would be great. Thanks.
Any guidelines and experience from someone having hands-on experience with C++ Embedded Systems Foundation Viz. Memory mapped peripherals, interrupt handlers, embedded microcontroller etc is greatly appreciated. Thanks
neb
Valentine
Hi! Are there any stl methods able to find different elements beetween vecors? My function throws segmentation error, what am i doing wrong??
Arthur
noop
Hi! Are there any stl methods able to find different elements beetween vecors? My function throws segmentation error, what am i doing wrong??
Have you checked if n and m are valid? if(n <= a.size() && m <= b.size()) // ok else // n or m is out of valid range if the function searchs all the values in the vectors, then you don't need to pass n and m. Use a.size() and m.size() instead. Also you could replace the for-loop with ranged-based for-loop: for(auto ai : a) { for(auto bi : b) if (ai == bi) // found & break .... } Or you could include algorithm library and use find function or set_difference.
Suresh
Is there any Linux based programmer here with HTML 5 skills? I'm looking for a consultant
Anonymous
can someone explain why this program is failing if I use regular array instead of vectors it works https://dpaste.org/KsVU
V01D
I have been into Competitive Programming using C++ since 2 Years and would continue but I want to switch to C++ embedded systems for my final year project. Any course/MOOC recommendations or any roadmap/guidelines from Experts would be great. Thanks.
1. Embedded freeBSD cookbook by Paul Cevoli 2. Embedded linux kernel and driver development by Michael Opdenacker Disclaimer: I have not read either of these, I just had them laying around on my cloud.
V01D
He already received a warn
Harsha [M]
He already received a warn
To delete the msg I reported
Dima
lol
Anonymous
can the problem be optimised for obstacles https://www.geeksforgeeks.org/maximum-sum-path-in-a-matrix-from-top-to-bottom-and-back/?ref=rp
Anonymous
how to sum the maximum of nums collected if -1 is obstacle and 1 is a removable value while 0 is free path.
Anonymous
this input causes a problem https://dpaste.org/GwF4
Anonymous
How to show loading animation in output of C++ program ?
Vlad
How to show loading animation in output of C++ program ?
Depends on what output you're using
Vlad
If it's plain console, you'll need ncurses
Anonymous
Good morning
klimi
Good morning
What's your issue?
Numan
Good morning
Good evening :) in Turkey
Anonymous
Good evening :) in Turkey
Nice. It's just I'm from Brazil
Anonymous
What's your issue?
For now there is none!
Anonymous
I have been starting to study C++
None
Hi everyone, I need a small help I have cleared my concepts of c++ I require a book or any website wherei can practice Pls help
Dima
bruh these stickers
Dima
JPEG
Anonymous
I've created a program of quiz in which some questions are displaying with options and enter the answer.
Anonymous
I've created a program of quiz in which some questions are displaying with options and enter the answer.
How to calculate correct and incorrect answers at last of the output result ?
Anonymous
Yes I'm using the same concept but I want to display number of correct and incorrect at the last.
Renan
Welcome, S!
Anonymous
thanks
klimi
This one was for dima :(
Dima
Nom nom
klimi
Sorry love
:)
😂
Nazarova Muslibar
#ban and #offtopic
:)
👌
Anonymous
.exe ?
Roxifλsz 🇱🇹
/warn wirus
:)
.exe ?
trojan virus
Dima
What
Karan - 1DS20IS042
I want full course of C programming can any body help me
Siddhant
Can anyone help?
Siddhant
How do I avoid integer overflow
klimi
How do I avoid integer overflow
Ah.... Just have some check or design a system that wouldnt overflow
Siddhant
I m doing program for Fibonacci series for larger n values
klimi
Oh I see... Use bigger container
Siddhant
I used long long int, still it's showing that
klimi
If you use int... Then long might be better
klimi
@K11M1
Slowmode is on I cannot reply that fast
Siddhant
Then use bigint library
Ohkay , it's prebuild or need to download externally
klimi
What do you mean by prebuilt?
Siddhant
What do you mean by prebuilt?
Like we include normal iostream n all or external like graphics.h we need to download n all that stuff
sree nandhan
unsigned long might help right ??
Siddhant
klimi
unsigned long might help right ??
Thats just one bit longer....
Siddhant
Its not in standard library
It's bigInt right? I"ll Google wait
Siddhant
Actually I m new with cpp, it would be great if u can elaborate
Cristi
Hello, I have a problem, I am newbie in C++. I want to write e³ This is right method -> power(M-E, 3*x); ?