IDE or scripts | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

IDE or scripts

I'm new in C programming world! I found that using IDE with all it's features and settings are too complicated for me. I prefer compile my programms using gcc compiler manually using a simple .bat script. What is better practice? 1)Compile and build programms manually with scripts! 2)Learn an IDE and use it!

1st Apr 2019, 12:26 PM
Lighton
Lighton - avatar
8 Answers
+ 11
For beginners, obtaining a better understanding of how the build process works is actually beneficial. As such, IDEs which help you do everything under the hood does not expose you to said inner workings. Believe it or not, I only managed to compile on the command line after 3 months into the language, when compiling should be one of the first skills to pick up when you learn programming. As such, I do not believe that beginners should be encouraged to start off with an IDE, but instead compile and build stuff manually like you did. IDEs should come in after the learner gains sufficient understanding of the build process, and wish to focus on coding with ease.
2nd Apr 2019, 8:35 AM
Hatsy Rei
Hatsy Rei - avatar
+ 14
Learn an IDE! I recommend Code::Blocks
2nd Apr 2019, 5:11 PM
Santi Media 🇦🇷
Santi Media 🇦🇷 - avatar
+ 7
For larger projects, IDEs are a must. But as has been said, you need to have knowledge of how to compile on the command line.
2nd Apr 2019, 11:46 PM
Sonic
Sonic - avatar
+ 6
Integrated Development Environment - IDE is useful for development projects. If you are new, gcc is the way to go.. simpler and gives you an opportunnity to 'learn as you go'
1st Apr 2019, 12:47 PM
Da2
Da2 - avatar
+ 5
Integrated Development Environment - IDE is useful for development projects. If you are new, gcc is the way to go.. simpler and gives you an opportunnity to 'learn as you go' GCC? Can you elaborate? Please
3rd Apr 2019, 2:20 AM
Ginger Mae
Ginger Mae - avatar
+ 5
Sorry that was meant as a question to Da2. I am unsure of what GCC stands for.
3rd Apr 2019, 2:54 AM
Ginger Mae
Ginger Mae - avatar
3rd Apr 2019, 4:09 AM
Da2
Da2 - avatar
+ 5
Just do what you do now till you feel the need to do more, that's when IDE will come in handy
3rd Apr 2019, 5:07 AM
Dan Rhamba
Dan Rhamba - avatar