Posts: 439
Threads: 71
Likes Received: 71 in 56 posts
Likes Given: 293
Joined: Nov 2014
05-10-2019, 11:30 AM
(This post was last modified: 05-10-2019, 11:31 AM by AwardTour.)
Based on some previous posts it looks like I should avoid Dev C++ (which is too bad because I like the IDE).
Any idea what compiler the graders at Study.com typically use?
Would the best/safest bet be GCC? If so can anyone also recommend a lightweight IDE? By "lightweight" I mean anything that is faster and less of a memory hog than Visual Studio
Currently working on: Capstone
Eastern University - (9 of 10 Courses Completed) (27 Credits)
Master's in Data Science
Western Governors University (WGU) - Completed in 2020.
Bachelor of Science, Business - Information Technology Management
TEEX (3 courses, 10 cr)
The Institutes (3 cr)
NFA (1 cr)
ALEKS (3 cr)
SOPHIA (21 courses, 57 cr)
Study.com (18 courses, 54 cr)
WGU (12 courses, 38 CUs)
Eastern University (9 courses, 27 cr)
•
Posts: 370
Threads: 39
Likes Received: 78 in 53 posts
Likes Given: 245
Joined: Mar 2017
I used visual studio code for my C++ projects at a local cc, but you can also use an online compiler for free.
https://www.onlinegdb.com/online_c++_compiler
Georgia Institute of Technology: MS in Analytics (3/32 Credits)
Boston University: MS in Software Development
Thomas Edison State University: BA in Liberal Studies
•
Posts: 439
Threads: 71
Likes Received: 71 in 56 posts
Likes Given: 293
Joined: Nov 2014
(05-10-2019, 12:28 PM)MrBossmanJr Wrote: I used visual studio code for my C++ projects at a local cc, but you can also use an online compiler for free.
https://www.onlinegdb.com/online_c++_compiler
That looks cool but it does not appear (after a quick look) to produce a .EXE/Binary that can be downloaded. It seems more like an online C/C++ interpreter that outputs to a console window.
Back in the day I used this online compiler to get a binary. http://www.delorie.com/djgpp/compile/
It is outdated now and only runs in DOS protected mode.
I would just like a standalone C compiler with a quick/small IDE (windows compatible).
Currently working on: Capstone
Eastern University - (9 of 10 Courses Completed) (27 Credits)
Master's in Data Science
Western Governors University (WGU) - Completed in 2020.
Bachelor of Science, Business - Information Technology Management
TEEX (3 courses, 10 cr)
The Institutes (3 cr)
NFA (1 cr)
ALEKS (3 cr)
SOPHIA (21 courses, 57 cr)
Study.com (18 courses, 54 cr)
WGU (12 courses, 38 CUs)
Eastern University (9 courses, 27 cr)
•
Posts: 370
Threads: 39
Likes Received: 78 in 53 posts
Likes Given: 245
Joined: Mar 2017
05-10-2019, 01:15 PM
(This post was last modified: 05-10-2019, 01:35 PM by MrBossmanJr.)
Oh in C. My bad. I glance over things too quickly lol. At Temple, I used putty and nano. I forget what we used to compile everything though.
Actually, I don't think it matters because C code can run in C++ but not the other way around.
Anyways, I use Atom editor. I hear there is an add-on gpp compiler. I'm not sure about how lightweight it is.
SubC is something my friend recommended.
http://www.t3x.org/subc/
EDIT: I've never used it so I can't really say anything about it.
Georgia Institute of Technology: MS in Analytics (3/32 Credits)
Boston University: MS in Software Development
Thomas Edison State University: BA in Liberal Studies
•
Posts: 439
Threads: 71
Likes Received: 71 in 56 posts
Likes Given: 293
Joined: Nov 2014
(05-10-2019, 01:15 PM)MrBossmanJr Wrote: Oh in C. My bad. I glance over things too quickly lol. At Temple, I used putty and nano. I forget what we used to compile everything though.
Actually, I don't think it matters because C code can run in C++ but not the other way around.
Anyways, I use Atom editor. I hear there is an add-on gpp compiler. I'm not sure about how lightweight it is.
SubC is something my friend recommended.
http://www.t3x.org/subc/
Thanks for the reply, most people will just say use a C++ compiler to compile a C program. I have seen a few threads where people have used Dev C++ and Study.com reported back compilation error messages and warnings. I guess I am at the mercy of what ever compiler the Study.com grader is using. I think I am going to take Merlin's advice in another thread and use GCC. I am open to suggestions on an IDE to go with it.
Currently working on: Capstone
Eastern University - (9 of 10 Courses Completed) (27 Credits)
Master's in Data Science
Western Governors University (WGU) - Completed in 2020.
Bachelor of Science, Business - Information Technology Management
TEEX (3 courses, 10 cr)
The Institutes (3 cr)
NFA (1 cr)
ALEKS (3 cr)
SOPHIA (21 courses, 57 cr)
Study.com (18 courses, 54 cr)
WGU (12 courses, 38 CUs)
Eastern University (9 courses, 27 cr)
•
Posts: 4,273
Threads: 31
Likes Received: 1,795 in 1,199 posts
Likes Given: 892
Joined: Dec 2015
05-10-2019, 03:02 PM
(This post was last modified: 05-10-2019, 03:03 PM by davewill.)
You might like Visual Studio Code. It's Open Source, light weight, and available on Windows, Mac or Linux. You can use it with either the Microsoft or GCC compilers. For a class, I'd probably go with GCC and simple hand made make files and just use VS Code as an editor.
NanoDegree: Intro to Self-Driving Cars (2019)
Coursera: Stanford Machine Learning (2019)
TESU: BA in Comp Sci (2016)
TECEP:Env Ethics (2015); TESU PLA:Software Eng, Computer Arch, C++, Advanced C++, Data Struct (2015); TESU Courses:Capstone, Database Mngmnt Sys, Op Sys, Artificial Intel, Discrete Math, Intro to Portfolio Dev, Intro PLA (2014-16); DSST:Anthro, Pers Fin, Astronomy (2014); CLEP:Intro to Soc (2014); Saylor.org:Intro to Computers (2014); CC: 69 units (1980-88)
PLA Tips Thread - TESU: What is in a Portfolio?
Posts: 439
Threads: 71
Likes Received: 71 in 56 posts
Likes Given: 293
Joined: Nov 2014
(05-10-2019, 03:02 PM)davewill Wrote: You might like Visual Studio Code. It's Open Source, light weight, and available on Windows, Mac or Linux. You can use it with either the Microsoft or GCC compilers. For a class, I'd probably go with GCC and simple hand made make files and just use VS Code as an editor.
Thanks for the recommendation, I am going to give that a try as my editor.
Currently working on: Capstone
Eastern University - (9 of 10 Courses Completed) (27 Credits)
Master's in Data Science
Western Governors University (WGU) - Completed in 2020.
Bachelor of Science, Business - Information Technology Management
TEEX (3 courses, 10 cr)
The Institutes (3 cr)
NFA (1 cr)
ALEKS (3 cr)
SOPHIA (21 courses, 57 cr)
Study.com (18 courses, 54 cr)
WGU (12 courses, 38 CUs)
Eastern University (9 courses, 27 cr)
•
Posts: 2,421
Threads: 23
Likes Received: 1,199 in 778 posts
Likes Given: 227
Joined: Jul 2011
05-10-2019, 07:09 PM
(This post was last modified: 05-10-2019, 07:09 PM by Merlin.)
(05-10-2019, 11:30 AM)AwardTour Wrote: Based on some previous posts it looks like I should avoid Dev C++ (which is too bad because I like the IDE).
Any idea what compiler the graders at Study.com typically use?
Would the best/safest bet be GCC? If so can anyone also recommend a lightweight IDE? By "lightweight" I mean anything that is faster and less of a memory hog than Visual Studio
I'm pretty sure that the evaluators use GCC in both instances, so I ended up using GCC/C++ (technically LLVM/clang) for both my SL C++ and SDC C Programming courses and didn't have any problems.
Both are free and easy to set up as well. I use a Mac so the compiler is native, but I'd set up a virtual machine running Linux if I were going to do this on my Windows PC.
Working on: Debating whether I want to pursue a doctoral program or maybe another master's degree in 2022-23
Complete:
MBA (IT Management), 2019, Western Governors University
BSBA (Computer Information Systems), 2019, Thomas Edison State University
ASNSM (Computer Science), 2019, Thomas Edison State University
ScholarMatch College & Career Coach
WGU Ambassador
Posts: 439
Threads: 71
Likes Received: 71 in 56 posts
Likes Given: 293
Joined: Nov 2014
(05-10-2019, 07:09 PM)Merlin Wrote: (05-10-2019, 11:30 AM)AwardTour Wrote: Based on some previous posts it looks like I should avoid Dev C++ (which is too bad because I like the IDE).
Any idea what compiler the graders at Study.com typically use?
Would the best/safest bet be GCC? If so can anyone also recommend a lightweight IDE? By "lightweight" I mean anything that is faster and less of a memory hog than Visual Studio
I'm pretty sure that the evaluators use GCC in both instances, so I ended up using GCC/C++ (technically LLVM/clang) for both my SL C++ and SDC C Programming courses and didn't have any problems.
Both are free and easy to set up as well. I use a Mac so the compiler is native, but I'd set up a virtual machine running Linux if I were going to do this on my Windows PC. The vm running linux on a windows box is a good idea.
Would downloading Dev C++ and replacing the old Mingw with a more current build be reasonable?
Currently working on: Capstone
Eastern University - (9 of 10 Courses Completed) (27 Credits)
Master's in Data Science
Western Governors University (WGU) - Completed in 2020.
Bachelor of Science, Business - Information Technology Management
TEEX (3 courses, 10 cr)
The Institutes (3 cr)
NFA (1 cr)
ALEKS (3 cr)
SOPHIA (21 courses, 57 cr)
Study.com (18 courses, 54 cr)
WGU (12 courses, 38 CUs)
Eastern University (9 courses, 27 cr)
•
Posts: 1,836
Threads: 48
Likes Received: 456 in 303 posts
Likes Given: 290
Joined: Jun 2012
|