Category Archives: C

Learning LOOPS in C

What is a LOOP ? A loop is simply a statement which can execute a set of defined statements repetitively. You can write any valid C statement within a loop and you can also set how many times to execute … Continue reading

Posted in C | Tagged | Leave a comment

C Programming Video Tutorials for Beginners | Variables in C with Example

#include <stdio.h> #include <conio.h> int main() { //datatype int age ; float weight ; char sex ; age = 37 ; weight = 75.8 ; sex = ‘M’ ; printf(“%d %f %c”,age, weight,sex ); getch() ; return 0 ; } … Continue reading

Posted in C | Tagged | Leave a comment

download C IDE

Please download IDE http://www.bloodshed.net/dev/devcpp.html Then, run the installation and here we go for first program of C. File -> New Source #include<stdio.h>  — header stdio stands for standard input output and .h stands for header file #include<conio.h> Every C program starts with … Continue reading

Posted in C | Tagged | Leave a comment

Constants, Variables and Keywords

A constant is an entity that doesnt change. Example Integer Constants – 28,102, 857 etc Real Constant – 25.024 and etc ( numbers with decimal points). Character constant – ‘a’, ‘A’,’z’, ‘=’, ‘9 An Variable is an entity that does … Continue reading

Posted in C | Tagged , | Leave a comment

Introduction.History, Why need study C

So let gets started. C language was developed by AT & T`s Bell. It was designed and written by a man called Dennis Ritchie. Then its comes to questions why i need study C ? Learning the basic language elements … Continue reading

Posted in C | Tagged , | Leave a comment