C language programming

 C language 

Home Page


This blog helps you to learn C programming concepts. You can learn C language at your own speed and time. One can learn concepts of C language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.

CProgramPracticals


C Branching Statements  
Branching Statements in C: C language executes program statements in a sequence. Sometimes we need to alter the flow of sequence of statements. This is possible using Branching statements offered by C language. They are also known as control statements. Branching Statements of C are given below:
  • if statement
  • if…else statement
  • switch statement
  • nested if statement



Looping Statements
Looping statements in C: In computer programming, a loop is a sequence of commands or statements that are repeated many times. Looping statements in C language are as under:
  • for statement
  • while statement
  • do…while statement


C Files
File Management in CWe create a File for permanent storage of data. C language provides many functions that help us to perform various file operations. 

Read more details about general syntax of File Management, reading content from a file, writing and appending content to a file.
 


 Flowchart
Flowchart
A flowchart is a graphical representation of algorithms, workflow or process. The purpose of a flowchart is to provide people with a common language for understanding a project or process. Each flowchart represents a solution to a given problem definition.

Know more details about the Flowchart here...



Array in C

Array provides easy way to represent our data in C program. If we want to store marks of 100 students, then declaring 100 different int type of variables is not a good idea in C. C language provides facility to solve this issue using concept of “Array”. An array is collection of variables with same datatype.

In C language Arrays are of two types:

  • One-dimensional arrays
  • Multidimensional arrays


Function in C

Function is a group of statements which performs a specific task. It is also known as Sub-routine or Procedure or Method. There are two types of C functions:
  • Library Functions (also known as System defined function)
  • User defined functions (written by programmers)


Know more details about C Functions and other important aspects here...


Structure in C

Structure is one of the important data type in C language. Structure is a collection of variables with different datatypes. The structure variable in C can be declared using “struct” keyword. 

Learn more details and syntax about C Structure here...



* * * * *

Open the Pdf 

Comments

Popular Posts