Class 11 and 12 Computer Science – West Bengal board
Class 11 West Bengal board Computer Science notes 1. A brief history of computer 2. Data processing and computer organization…
Reverse of array in c
#includeint main(){ int n, i; printf(“Enter the size of array:: “); scanf(“%d”, &n); int arr[n]; for(i=0; i=0; i–){ printf(” %d…
Write a program in C to insert New value in the array (sorted list)
#include<stdio.h> int main() { int n, p, i, len=9; int arr[15]={12, 23, 45, 66, 69, 87, 95, 10, 106};…
Find Krishnamurti number in C program
#include#includeint main(){ int start,end,i,j,count=0,k,b,sum,fact; printf(“Enter the start and end point of range: “); scanf(“%d %d”, &start ,&end); printf(“nThe krishnamurthy no’s…
Write a C Program to find the roots of a quadratic equation
#include<stdio.h>int main(){ float a, b, c, d, root1, root2; printf(“Enter the coefficients a, b and c : “); scanf(“%f…