Posts

C program to accept N numbers and arrange them in an ascending order

C program to accept N numbers and arrange them in an ascending order. Code in C:   #include <stdio.h>     void main()     {           int i, j, t, n, a[30];         printf("Enter the value of the no. of elements :  ");         scanf("%d", &n);           printf("Enter the numbers one by one :  \n");         for (i = 0; i < n;i++)             scanf("%d", &a[i]);           for (i = 0; i < n;i++)          {               for (j = i + 1; j < n; j++)             {                   if (a[i] > a[j])                  {                       ...

Find the Sum of the Convergent Series...

AWS Lightsail : IAM user

Day of the Week ( Zellers Algorithm)

Convert : Figma Design ➡ Flutter Code

Find the absolute value of an Integer

Write a C program on Simpson’s 3/8 Rule

Write a C program on Simpson’s 1/3 Rule