UrbanPro
true

Learn C Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

C for Begginers

Sonali K.
19/03/2020 0 0

C is an procedure oriented programming language. For any begginer the word program is new.

 

Program: Set of instructions to be followed by machine or computer.

 

Instruction Examples: Arithmetic instruction like 

a=b+c;

 Semi colon here indicates end of instruction.

Collecting different variety of instructions into one name and executing it on machine. That one common name is noting but a procedure, function or method.

A C program can have n number of methods.

First sample program:

#include 
int main()
{
   // printf() displays the string inside quotation
   printf("Hello, World!");//printf is a predefined library function
   return 0;
}

First Line of program includes the header file . #include  is a preprocessor command. This command tells compiler to include the contents of stdio.h (standard input and output) file in the program.
Header files in C contaions predefined function definitions. Example: printf();

main(): Function that starts the execution of program.

int: here it is return type of main()
A function can return any type of value.Here main is returning int so last line of program
contains return statment having default int value 0.

 After compiling  this program we get the filename.obj file. Linker performs linking and at the end we get filename.exe. This exe file is an executable file which is finally executed.

 

 

0 Dislike
Follow 5

Please Enter a comment

Submit

Other Lessons for You

Compiler vs Interpreter
Compiler Interpreter Convert all the code into binary format and execute. Convert one statement at a time and execute, then Convert next statement and execute. After conversion, source...

Is It Fine To Write “void main()” Or “main()” In C/C++?
The definition: void main() { /* ... */ } Is not and never has been C++, nor has it even been C. See the ISO C++ standard 3.6.1 or the ISO C standard 5.1.2.2.1. A conforming...

C Program-Error Handling[Program Exit Status]
//Header files #include<stdio.h>#include<conio.h>#include<stdlib.h> //Main Function void main(){ int dividend=20; int divisor=5; int quotient; //Function for clearing screen clrscr();...

Some interview questions for freshers on C language
Q1. What are the two forms of #include? There are two variants of #include. The one is #include and the other one is #include”file”. In general the first form that is #include is used to...

C Program-Infinite Loop[For] Demo
//Header Files #include<stdio.h>#include<conio.h> //Main function void main(){ //Function for clearing screen clrscr(); //Infinite for loop for(;;) { printf("Hello!"); } //Function for...
X

Looking for C Language Classes?

The best tutors for C Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C Language with the Best Tutors

The best Tutors for C Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more