Arrays in C Programming with examples

C programming array; In this tutorial, i am going to show you what is array in c programming and how to use array in c. Arrays in C programming Here, i will show you how to declare, initialize, access, and delete elements of an array in c programming with the help of examples: Array Definition … Read more

String Functions in C with Examples

C string functions; In this tutorial, i am going to show you string functions in c programming language with examples. String Functions in C Here, i will teach you about string functions in c: is as follow: What are string functions in C List of String Functions in C Examples of String Functions in C … Read more

C Program to Sort Array in Ascending Order

In this tutorial, i am going to show you how to sort array in ascending order with the help of standard method, function, and pointer in c programs. All C Programs to Sort Array in Ascending Order C Program to Sort Array in Ascending Order using Standard Method #include <stdio.h> int main() { int a[10000],i,n,j,temp; … Read more

Comments in C Programming

C programming language comments; In this tutorial, i am going to show you how to use comments in the C language with syntax and examples. How to write Comments in C Programming A comment starts with a slash asterisk /* and ends with a asterisk slash */ and can be anywhere in your program. Comments can span several lines … Read more

C Program to Calculate Standard Deviation

C program to find standard deviation; In this tutorial, i am going to show you how to find the standard deviation in c program. Programs to Calculate Standard Deviation C Program to Find Standard Deviation /* Standard Deviation – Calculate standard deviation of n numbers */ #include <stdio.h> #include <math.h> void main() { int i, … Read more