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.
Start your programming journey with following important topics...
File Management in C: We 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 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:
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...
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...