Anonymous
GCC 8.1 Released https://gcc.gnu.org/ml/gcc/2018-05/msg00017.html https://redd.it/8gh8r0 @r_cpp
‌‌‎ZUBAIR
I already did bro
Anonymous
Cool
Anonymous
I have done so , thank you
Mridul
I know the basics of c and c++ and have a command in them too but i want to learn the advance part any suggestions what to and from where to start?
Anonymous
Read a good book
Which book ?
Anonymous
Which book ?
The link shared by Kevin 3 msg above yours lists some
Anonymous
I want to learn C
Anonymous
Not C++
Anonymous
Idk then
Anonymous
Sorry
1
This group became spamming group😓
Anonymous
I want to learn C
C it's a simple language developed in 1970, C it's a general purpose procedural programming language
Anonymous
Is there someone know Microsoft visual studio?
Ariana
I want to learn C
Grab like a C documentation, isn't too difficult to learn if you already know other languages
Igor🇺🇦
Anonymous
Do any one of u know how to detect the patches files(in the form of images, text...) in android mobile
Anonymous
Quick poll: What editor do you use? Atom, VS, VS Code, Sublime?
Likai
Notepad++ or an IDE
Likai
I use Codelite for c and c++
Likai
eclipse for java
Likai
notepad++ for all else
Anonymous
Quick poll: What editor do you use? Atom, VS, VS Code, Sublime?
Davide Coppola: I published the results of the poll about the C/C++ IDE I posted a couple of weeks ago: http://blog.davidecoppola.com/2018/02/market-share-most-used-c-cpp-ides-in-2018-statistics-estimates/
Anonymous
I published the results of the poll about the C/C++ IDE I posted a couple of weeks ago: http://blog.davidecoppola.com/2018/02/market-share-most-used-c-cpp-ides-in-2018-statistics-estimates/
Anonymous
ISO C++ Official Homepage: - https://isocpp.org ISO C++ committee - https://isocpp.org/std/the-committee FAQs - http://www.stroustrup.com/bs_faq.html (I actually read this all) - http://www.stroustrup.com/bs_faq2.html - https://isocpp.org/faq - http://www.stroustrup.com/C++11FAQ.html Reddit (reddit.com) - http://reddit.com/r/cpp - http://reddit.com/r/cpp_questions (U can also ask questions here) Slack: - https://cpplang.now.sh/ Cpp Reference - http://en.cppreference.com/w/ Books (Books are the best way to learn in cpp): - https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list Online Tutorial: - http://learncpp.com - https://fbb-git.github.io/cppannotations/cppannotations/html/index.html Modern Cpp Features (C++11+): - https://github.com/AnthonyCalandra/modern-cpp-features C++17 - http://www.bfilipek.com/2017/01/cpp17features.html - https://jfbastien.github.io Youtube: - https://www.youtube.com/user/lefticus1/videos - https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw - https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ Conferences: - CppCon: https://cppcon.org/ - BoostCon: https://www.youtube.com/user/BoostCon - Meeting Cpp: http://meetingcpp.com/ Blogs: - https://akrzemi1.wordpress.com/ - http://ericniebler.com - http://foonathan.net/ - https://herbsutter.com/category/c/ Selected Topics (No particular order) Concurrency & Parallelism: - http://www.bogotobogo.com/cplusplus/multithreaded.php - http://thispointer.com/c-11-multithreading-part-1-three-different-ways-to-create-threads/ Networking: Pointers: https://web.archive.org/web/20170930150208/http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html
Anonymous
ISO C++ Official Homepage: - https://isocpp.org ISO C++ committee - https://isocpp.org/std/the-committee FAQs - http://www.stroustrup.com/bs_faq.html (I actually read this all) - http://www.stroustrup.com/bs_faq2.html - https://isocpp.org/faq - http://www.stroustrup.com/C++11FAQ.html Reddit (reddit.com) - http://reddit.com/r/cpp - http://reddit.com/r/cpp_questions (U can also ask questions here) Slack: - https://cpplang.now.sh/ Cpp Reference - http://en.cppreference.com/w/ Books (Books are the best way to learn in cpp): - https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list Online Tutorial: - http://learncpp.com - https://fbb-git.github.io/cppannotations/cppannotations/html/index.html Modern Cpp Features (C++11+): - https://github.com/AnthonyCalandra/modern-cpp-features C++17 - http://www.bfilipek.com/2017/01/cpp17features.html - https://jfbastien.github.io Youtube: - https://www.youtube.com/user/lefticus1/videos - https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw - https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ Conferences: - CppCon: https://cppcon.org/ - BoostCon: https://www.youtube.com/user/BoostCon - Meeting Cpp: http://meetingcpp.com/ Blogs: - https://akrzemi1.wordpress.com/ - http://ericniebler.com - http://foonathan.net/ - https://herbsutter.com/category/c/ Selected Topics (No particular order) Concurrency & Parallelism: - http://www.bogotobogo.com/cplusplus/multithreaded.php - http://thispointer.com/c-11-multithreading-part-1-three-different-ways-to-create-threads/ Networking: Pointers: https://web.archive.org/web/20170930150208/http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html
/save cpp
°_°
Hi guys
°_°
Can someone help me to resolve a problem?
°_°
It's a very tiny program
°_°
Only 25 strings
°_°
Can I make a photo or do you want a screen?
°_°
Ok
°_°
#include <stdio.h> #include <stdlib.h> int main() { int Promoted=0, Rejected=0, n, i; int Mark[i]; printf("How many people are in the class? "); scanf("%d", &n); for (i=0; i<n; i++) { do { printf("\nEnter the vote: "); scanf("%d", &Mark[i]); }while(Mark[i]<0 || Mark[i]>10); if(Mark[i]>=6) Promoted++; if(Mark[i]<6) Rejected++; } printf("\nPromoted: %d", Promoted); printf("\nRejected: %d", Rejected); return 0; }
°_°
damm it didn't copy spaces
°_°
can you still read that?
°_°
it works but i can enter only 4 vote, if i go up then 4 it crash
°_°
it's a very simple code, i coded more difficult things lol
Anonymous
What exactly r u trying to do ?
Anonymous
And why dont u send ss it would be more easier to read than
°_°
I'm controlling every input in a array if it is Greater than 6
°_°
it's about school's vote
°_°
we have from 1 to 10
°_°
if you got a vote Greater than 6 you can pass the year or you will be rejected
°_°
i ask how many people i have to control in the first input
°_°
and after i ask every vote to them.
°_°
i have done it in algobuild (flow chart) and it works perfectly
Anonymous
I dont understand one thing if ppl can give what value they want what kind of voiting is it ?
°_°
this is only for a test
Anonymous
Ok so u will add boolean later right ?
°_°
yeah
°_°
i'm Learning c/c++ from 6 months alone, now i am studying class
°_°
(my biggest code is a virtual chemical table)
°_°
periodic table*
Anonymous
I see hmm ok ill try to write the same code as u have try to solve cuz its too confusing in this way for me
°_°
i don't know why spaces are not included, apologies
Anonymous
Its ok just give me 5 min
°_°
take all the time you need, thanks
Ariana
Quick poll: What editor do you use? Atom, VS, VS Code, Sublime?
i have like 50 editors mdr vim whatever text editor i open clion atom cppcode codeblocks
°_°
i use devcpp
°_°
and codeblocks
Mr. COwO2 Preis
Neovim
Ariana
and codeblocks
oh yes codeblocks too
°_°
oh yes codeblocks too
I don't like its font
°_°
Ok I have learned that I can change it
°_°
Great
Anonymous
I use devc++ too and it doesnt work for me too but it suppose to work wtf
Ariana
If nothing works just use text editors
Mr. COwO2 Preis
Neovim
Anonymous
Mr. COwO2 Preis
Ed
No
David
Quick poll: What editor do you use? Atom, VS, VS Code, Sublime?
I dislike all of them but sublime. I use nvim
Anonymous
No
Acme
Niko
I am a beginning programming student, where should i start?
https://simplesnippets.tech/top-5-ways-to-learn-programming-faster/