C program to convert given number of any base to any base.
Any base to any base conversion in c. #include<stdio.h> void convert(int d, i…
#include<stdio.h> int main() { int a[100],i,j,n; int temp,flag=0; printf("Enter size of arrray:"); scanf("%d"…
Read more#include<stdio.h> int main() { int a[100],i,j,n; int temp,flag=0; printf("Enter size of arrray:"); scanf("%d"…
Read moreC PROGRAM #include<stdio.h> int main() { int M[50][50],T[50][50]; int m,n,i,j; printf("Enter number of rows:"); scanf("%…
Read moreC PROGRAM #include <stdio.h> int main() { int f=0,s=1,A,i,n; printf( "Enter number of terms: " ); scanf( "%d" ,…
Read more#include<stdio.h> int main() { int arr[100],i,n,x,flag=0,first,last,mid; printf("Enter size of array:"); scanf("%d&q…
Read moreThis is a simple C program in File Handling to copy content of one file and append that content to another file. As you can see below two files we ha…
Read moreC PROGRAM #include<stdio.h> int main() { float a,b; char choice; printf("\n Enter first number a= "); scanf("%f&qu…
Read more#include <stdio.h> #include <stdlib.h> int main() { int* p; int n, i; n=5; printf("Enter number of elements: %d…
Read moreC Program #include<stdio.h> #include<conio.h> int main() { FILE *fp; //File type pointer. char ch; int special=0,cha=0,num=0; fp=f…
Read moreC Program #include<stdio.h> #include<conio.h> int main() { FILE *f1,*f2,*f3; int number,i; printf("\n Contents of …
Read more#include<stdio.h> int main() { int choice; printf("\n Enter a choice: "); scanf("%d",&choice); …
Read more#include <stdio.h> int main() { int num,revnum=0,rem; printf( "\n Enter a number= " ); scanf( "%d" ,&n…
Read more/* Simple C program for accepting and printing information in given Structure */ #include <stdio.h> struct employee { int …
Read moreAny base to any base conversion in c. #include<stdio.h> void convert(int d, i…
Social Plugin