C Program to Delete an Element in an Array

In this tutorial, i am going to show you how to delete elements in an array in c programs. C Program to Delete an Element in an Array #include <stdio.h> int main() { int Array[10], Position, i, Size; printf(“\n Please Enter Number of elements in an array :- “); scanf(“%d”, &Size); printf(“\n Please Enter %d … Read more

C Program to Perform Arithmetic Operations on Arrays

In this tutorial, i am going to show you how to perform arithmetic operations on arrays in c programs. C Program to Perform Arithmetic Operations on Arrays #include<stdio.h> int main(){ int size, i, A[50], B[50]; int add[10], sub[10], mul[10], mod[10]; float div[10]; printf(“enter array size:\n”); scanf(“%d”, &size); printf(“enter elements of 1st array:\n”); for(i = 0; … Read more