C Programming Tutorials

String in C and its functions- Free C programming Tutorials

String in C launguage is defined actually as an array of character but the only difference is, it is terminated with a special character which is ‘/0’ (null character). For example: “ABCDE123” In this section, we learn how to declare strings, how to work with strings and how to use the pre-defined string handling functions in …

String in C and its functions- Free C programming Tutorials Read More »

C Programming Functions and its Types – Free C Programming Tutorials

In this tutorial, you will get familiarise to functions in c and types of functions used in programming. A function is defined as a group of code or statements that performs a specific task. Let us consider, you have to create a program to add to numbers. So depending upon numbers from the user. You …

C Programming Functions and its Types – Free C Programming Tutorials Read More »

Introduction to C programming – Free C tutorials

C is a procedural oriented programming(POP’s) language. (Procedural oriented programming language of computer programming language is define as the computer programming language which specifies that a series of instructions or steps and procedures which composes a program). C programming was originally developed by Dennis M. Ritchie (an american computer scientist) between 1969 and 1973 at Bell laboratory. It was mainly …

Introduction to C programming – Free C tutorials Read More »