HI, Welcome to I Greenhorn.
This blog has been made for the newbies(beginners) to get start up in the world of PROGRAMMING.
I don't want to put fear in you by highlighting the word "programming", that wasn't my intend.
But I do really want to ensure you that it's a powerful tool to build up machines and supercomputers which does a trillions of job per second in the current era.
But wait... Trillions of Jobs?? What does these machines actually do?
Who actually knows? scientist believe them.
But we humans do believe in giving commands (as like hitler used to).
Same is the case with the programming. We give instructions to the computer and they do it.
For e.g. as just fora moment the following line prints the sentence HELLO! WORLD to the output screen.
And if you want to know the whole code(instructions) that you could actually run it practically:
What? That's it. Yes, Just add two lines more and you are done. To actually run this output you may need a compiler, you may use:
For Windows users
Dev C++ (download v 4.9.9.2) or use Latest here.
For Linux/Unix users try following command at your prompt
apt-get install gcc
Or any other compiler you would like to use.
And my friend, for any other queries keep in mind that Google is your best friend and feel free to put your questions and queries here if you like.
So lets get start and learn how to give commands to these high-tech machines and get our things done easily.
This blog has been made for the newbies(beginners) to get start up in the world of PROGRAMMING.
I don't want to put fear in you by highlighting the word "programming", that wasn't my intend.
But I do really want to ensure you that it's a powerful tool to build up machines and supercomputers which does a trillions of job per second in the current era.
But wait... Trillions of Jobs?? What does these machines actually do?
Who actually knows? scientist believe them.
But we humans do believe in giving commands (as like hitler used to).
Same is the case with the programming. We give instructions to the computer and they do it.
For e.g. as just fora moment the following line prints the sentence HELLO! WORLD to the output screen.
printf("HELLO! WORLD");And if you want to know the whole code(instructions) that you could actually run it practically:
#include<stdio.h>
main()
{
printf("HELLO! WORLD");
}What? That's it. Yes, Just add two lines more and you are done. To actually run this output you may need a compiler, you may use:
For Windows users
Dev C++ (download v 4.9.9.2) or use Latest here.
For Linux/Unix users try following command at your prompt
apt-get install gcc
Or any other compiler you would like to use.
And my friend, for any other queries keep in mind that Google is your best friend and feel free to put your questions and queries here if you like.
So lets get start and learn how to give commands to these high-tech machines and get our things done easily.
Spaghetti
Posted in: 



0 comments:
Post a Comment