Skip to main content

Posts

Showing posts with the label IDE

How to get started with C Programming

Getting Started with C There are several ways to start with any programming language. But in this post I'm gonna tell you how I started C as my first programming language. To get started with any language you must know why you need to learn that language. You can google to learn about "why do we need C language" . After you're done googling. you've must have learnt various reasons why do we need C.

Programming in C on Android

C is a powerful General Purpose Programming Language. Learning C could be beneficial as it is one of the basic but powerful language, there are several powerful tools which had been developed using C. The Python interpreter is written in C language known as CPython, Linux  OS was built using C, Android Kernels , MacOS and even Crunch a pentest password word list generator tool is built using C language. So to start with C programming, a newbie must have an Integrated Development Environment(IDE). It would be so difficult to write in a notepad. IDE can make things much simpler, makes every task like Compiling, Linking, Debugging easy to perform. Without an IDE it would be difficult for developer to mange a project. There are several IDE's for Windows, but the two popular ones are listed below with print screen: 1. Dev C++ Dev C++ Download link:  https://www.bloodshed.net/devcpp.html   2. Codeblocks Codeblocks  Download li...