
Explore each menu on the menu bar and take a close look at the options available. Notice the icons next to the menu items; these same icons can be found on the toolbar.
At the beginning of this course, you'll write, compile, and run programs using a single source file. For this, you'll only need a few buttons or menu options from the toolbar.
Before diving into writing your first C program, we'll customize some of the environmental settings of the IDE.


| #include <stdio.h> #include <conio.h> int main() { printf("Hello, My Name Is Sahil!\n"); return 0; } |