jituTechnology

jituTechnology

A program to calculate the factorial of a given number using recursive function.

A program to calculate the factorial of a given number using recursive function. Codes /*A program to find the factorial of a number using recursive function*/ /*Programed by          Jitendra Kr Yadav                          10116                          15 Mar,2011*/ #include<stdio.h> #include<conio.h> int rec(int); main() { int fact,n; printf(“Enter the number:”); scanf(“%d”,&n); fact=rec(n); printf(“Factorial = %d\n\n”,fact); printf(“Press […]

read more

A program for matrix multiplication using separate function to read, add and display.

A program for matrix multiplication using separate function to read, add and display. Codes /*A program for matrix multiplication using separate function to read, add and display*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void read(int matrix[][20],int,int); void mul(int matrix1[][20],int matrix2[][20],int,int); void display(int matrix[][20],int,int); main() { int matrix1[20][20]; int […]

read more

A program for matrix addition using separate function to read, add and display.

A program for matrix addition using separate function to read, add and display. Codes /*A program to sort the data in ascending order using function*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void read(int matrix[][20],int,int); void add(int matrix1[][20],int matrix2[][20],int,int); void display(int matrix[][20],int,int); main() { int matrix1[20][20]; int matrix2[20][20]; int […]

read more

A program to sort the data in ascending order using separate function to read, sort and display.

A program to sort the data in ascending order using separate function to read, sort and display. Codes /*A program to sort the data in ascending order using function*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void read(int num[],int); void sort(int num[],int); void display(int num[],int); main() { int n[20],x; […]

read more

A program to change the string ‘this is c programming’ in the given format.

A program to change the string ‘this is c programming’ in the given format. Codes /*A program to change the string ‘this is c programming’ in the given format*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void format(char[]); main() { char str[]=” this is c programming”; format(str); getch(); } […]

read more


Connect with Me

GPO 8973 NPC 541; Kathmandu Nepal
Phone: +977 9851236800

Calendar

April 2024
S M T W T F S
 123456
78910111213
14151617181920
21222324252627
282930