Skip to main content

C Programming for Beginners #2 (First Program hello world)




  • This is the First C Program from which every programmer have started.
#include<stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}

Explanation of the Program
  1. include is to add the specific library to compile the program.
  2. In this case stdio.h is the library in which commands are predefined it is called as preprocessor directive.
  3. printf is used when we have to display something on screen.
  4. In printf \n is used to print on the new line.
  5. After every end of command ; is used.
To compile the C program there are many compilers available but if you ask me I compile and run my programs on ubuntu so in ubuntu the program is typed in text editor and saved it as .c file and in terminal it is compiled by two ways using gcc name.c and in place of name you have to enter the name of file you have saved.

It will give the compiled program as a.out and you can run it by ./a.out command

Note:- To give your program the name you want instead of gcc you can use make name command to compile your program.

Comments

Popular posts from this blog

Android O (Android Operating system)

There are many kind of changes and improvements in this new version of Android OS. Increased Ability of the mobile:- aptX bluetooth streaming :-   High quality audio codec is supported for streaming to bluetooth Headsets and Speakers Adaptive icons give devs and OEMs easy shape masks, extra effects :-  "an OEM like Samsung or HTC will provide a unifying mask, which will allow developers to integrate almost any existing app icon into the broader user interface with minimal effort, and no extra graphics work on the icon itself." Neighborhood Aware Networking (NAN) mode for WiFi :-  "You can think about NAN as a combination of WiFi Direct and Nearby. Two hypothetical phones with NAN could find each other and connect without any additional apps or configuration, allowing them to share data at high speeds." Picture-in-picture video for all devices and new windowing features :- "The gist is that when watching video on Android O, you'll be able to shr...

C Programming #8 (Case Control Instruction)

In Programming we come across some situations where we have to choose from number of alternatives and choice should be specific to condition so the control statement that allow us to make a decision from number of choice is called as switch or we can say switch-case as they are used together. The switch statement looks like : switch (integer expression) { case constant 1: do this; case constant 2: do this; case constant 3: do this; default: do this; } In these case do this is the command statement that is to be followed when case is satisfied Example: #include<stdio.h> int main() { int i=2; switch(i) { case 1: printf("I am in case 1\n"); case 2: printf("I am in case 2\n"); case 3: printf("I am in case 3\n"); default: printf("I am in default"); } return 0; } Output of the program will be : I am in case 2 I am in case 3 I am in default But this is not the output we needed this program should give us...

C Programming #9 (Functions)

Function is a self contained block of statement that perform a coherent task of some kind. In simple word to write a C Program in a professional manner and in a clean way it is must to use  functions. Function is used in the C program where you want to do a specific kind of work always. Example: #include<stdio.h> void message(); int main() { message(); printf("This is 1\n"); return 0; } void message() { printf("This is 2\n"); } Output: This is 2 This is 1 Now you must be wondering that This is 1 Should come first but I have made use of function and designed how it should appear. In this program I have used Message() three times void message() This is for function prototype declaration It is necessary to mention prototype of every function that we intend to define in a program message() This is the function call means it call it's own function and main() is temporarily suspended till the control is in function message af...