PRINTING ASCII VALUE USING C PROGRAM
Solution:
#include<stdio.h>
void main(){
int i;
for(i=0;i<=255;i++){
...
MULTIPLICATION OF TWO MATRICES USING C PROGRAM
MULTIPLICATION OF TWO MATRICES USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p;
...
FIND OUT SUM OF DIAGONAL ELEMENTS OF A MATRIX USING
FIND OUT SUM OF DIAGONAL ELEMENTS OF A MATRIX USING
Solution:
#include<stdio.h>
int main(){
int a[10][10],i,j,sum=0,m,n;
printf("\nEnter...
Write A C Program To Find Out Transport Of A Matrix
Write A C Program To Find Out Transport Of A Matrix
Solution:
#include<stdio.h>
int main(){
int a[10][10],b[10][10],i,j,k=0,m,n;
...
Factorial of 100 in C Program
Factorial of 100 in C Program
Solution:
#include<stdio.h>
#define MAX 10000
void factorialof(int);
void multiply(int);
int length = 0;
int...
Multiplication of large numbers in c
Multiplication Of Large Numbers In C
Solution:
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
#define...
Division of Large Numbers in C Program
Division of Large Numbers in C Program
Solution:
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
#define...
BINARY SEARCH USING C PROGRAM
BINARY SEARCH USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int a[10],i,n,m,c=0,l,u,mid;
printf("Enter the size of an...
BINARY SEARCH THROUGH RECURSION USING C PROGRAM
BINARY SEARCH THROUGH RECURSION USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int a[10],i,n,m,c,l,u;
printf("Enter...
FIND FACTORIAL OF A NUMBER USING RECURSION IN C PROGRAM
FIND FACTORIAL OF A NUMBER USING RECURSION IN C PROGRAM
Solution:
#include<stdio.h>
int main(){
int num,f;
printf("\nEnter a...
FIND GCD OF A NUMBER USING RECURSION IN C PROGRAM
FIND GCD OF A NUMBER USING RECURSION IN C PROGRAM
Solution:
#include<stdio.h>
int main(){
int n1,n2,gcd;
printf("\nEnter two...
FIND SUM OF DIGITS OF A NUMBER USING RECURSION USING C PROGRAM
FIND SUM OF DIGITS OF A NUMBER USING RECURSION USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int num,x;
clrscr();
...
FIND POWER OF A NUMBER USING RECURSION USING C PROGRAM
FIND POWER OF A NUMBER USING RECURSION USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int pow,num;
long int res;
...
REVERSE A NUMBER USING RECURSION IN C PROGRAM
REVERSE A NUMBER USING RECURSION IN C PROGRAM
Solution :
#include<stdio.h>
int main(){
int num,rev;
printf("\nEnter a number :");
scanf("%d",&num);
rev=reverse(num);
printf("\nAfter...
SWAP TWO VARIABLES WITHOUT USING THIRD USING C PROGRAM VARIABLE
SWAP TWO VARIABLES WITHOUT USING THIRD USING C PROGRAM VARIABLE
#include<stdio.h>
int main(){
int a,b;
printf("\nEnter...
Write A C Program For Swapping Of Two Arrays
Write a c program for swapping of two arrays
Solution :
#include<stdio.h>
int main(){
int a[10],b[10],c[10],i;
printf("Enter First...
SWAPPING OF STRINGS USING C PROGRAM
SWAPPING OF STRINGS USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int i=0,j=0,k=0;
char str1[20],str2[20],temp[20];
...
CONVERSION FROM DECIMAL TO OCTAL USING C PROGRAM
CONVERSION FROM DECIMAL TO OCTAL USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
long int no,n=0,j=1,rem,no1;
printf("Enter...
CONVERSION FROM DECIMAL TO OCTAL USING C PROGRAM
CONVERSION FROM DECIMAL TO OCTAL USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
int i=0,j=0,rem=0,a[10],b[10];
long int...
CONVERSION OF DECIMAL TO BINARY USING C PROGRAM
CONVERSION OF DECIMAL TO BINARY USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
long int m,no=0,a=1;
int n,rem;
...
CONVERSION OF FAHRENHEIT TO CENTIGRADE USING C PROGRAM
CONVERSION OF FAHRENHEIT TO CENTIGRADE USING C PROGRAM
Solution:
#include<stdio.h>
int main(){
long int no,n=0,j=1,rem,no1;
printf("Enter...
C# The Multiplication Of Matrices Of Complex Numbers
C# The multiplication of matrices of complex numbers
Solution:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using...
C or C++ Program To Find Bonus Amount
The company has the following bonus policy for the fiscal year:
The bonus provided will be 5% if the total sale is less than 1, 00,000 and if the sale...
Write own version of the " strlen( ) " library function which is named mystrlen( )
How To Write own version of the " strlen( ) " library function which is named mystrlen( ) in C Programming Language ?
Solution For Write own...
C Programme To Multiply Two Matrixes
How To Write a C Programme To Multiply Two Matrixes in C Programming Language ?
Solution For C Programme To Multiply Two Matrixes:
#include <stdio.h>int...
All Types Of Sorting in C Programming with Example
How To Write a C Program To MERGE SORT, HEAP SORT, QUICK SORT, INSERTION SORT SELECTION SORT and BUBBLE SORT Arrays in C Programming Language ?
Solution...
Multiplying 100*100 matrix using threads and also produce the sum of the diagonal elements in another matrix
How To Write a C Program To Multiplying 100*100 matrix using threads and also produce the sum of the diagonal elements in another matrix in C Programming...
Read first 50 char from 4 Scull_Dev using proc (edit main.c)
How To Write a C Program To Read first 50 char from 4 Scull_Dev using proc in C Programming Language ?
Solution For C Program To Read first...
Subscribe to:
Posts (Atom)