Tag Archives: c

C Programming Tutorial 1 – A Simple Program

Programming in C is actually easy if we do everything step by step. Start learning C and see how fun it is!

First open your compiler, create a new c file, and lets have a look on a simple program. /* This is a simple C program. call this file sample.c */   #include<stdio .h>   main() { printf("Hello Info Tech Enthusiasts!"); … Continue reading