Hello everyone
Today i want to contribute in Utopian Categories Tutorial, tutorial i discussed is about C++ Programming with DevCpp.
Why Learn C?
C is known to be a very powerful language. C++ allows you to have a lot of control as to how you use computer resources, so in the right hands its speed and ability to cheaply use resources should be able to surpass other languages. Thanks to C's performance, it is often used to develop game engines, games, and desktop apps. Many AAA title video games are built with C.
Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.
Features are :
The best way to learn a programming language is by writing programs. Typically, the first program beginners write is a program called "Hello Steemians", which simply prints "Hello Steemians" to your computer screen.
Open Devcpp App, then create a new file by clicking the file menu --> New --> SourceFile.
https://s26.postimg.org/puw3sa96h/image.png
Add the sourcecode as below.
#include <stdio.h>
main()
{
printf("*****Hello Steemians*****\n");
printf("Terimakasih telah membaca post saya\nSemoga bermanfaat");
return 0;
}
https://s26.postimg.org/p5dbfxo2h/image.png
After you finish writing your sourcecode, compile it by clicking the Execute menu and click Compile (F9).
https://s26.postimg.org/bboyqwawp/image.png
Save the file where you want and click save.
https://s26.postimg.org/jh70p2max/image.png
if the compile process has been completed then in compile log it has the words "Compilation susseded in 5.99 seconds".
https://s26.postimg.org/e5s44d7y1/image.png
After the compile then we run the application we have created by clicking the Execute menu and select Run (F10)
https://s26.postimg.org/ypwy2zl61/image.png
Let's examine this program line by line:
You can get this project (extention .cpp) on this link https://drive.google.com/open?id=1ErFHZXrQduQlOhhH-q0wFoCXaakhrgSi
ok hopefully usefull and good luck !