Hi its me dharani,
Again with the C Programming blog ..
Yes, You might think its old already lots of blogs and code are available ,
but here in Tech bird you might find learn SOMETHING MORE THAN OTHERS
Early and grasp new way of programming for sure.
Let's Start with Hello World!
C :
- It is the structured programming language.
- It was designed by Ken Thompson and Dennis Ritchie.
- C program has 32 keywords for operation..
- Easy to start.
- Basic Programming Language to learn before you start programming.
Source Code:
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
print ("Hello World..!");
getch();
}
Output:
Hello World..!
Next Post:
C #2- Addition of two numbers with C Programming
Don't forget to make your opinion count..
Thanks and regards,
Tech Bird
Comments