How To CHECKING LEAP YEAR USING C PROGRAM.
#include<stdio.h>#include<conio.h>void main(){ int year; clrscr(); printf("Enter...
PRINT PRIME NUMBERS BETWEEN 1-300 USING BREAK AND CONTINUE IN C
How To PRINT PRIME NUMBERS BETWEEN 1-300 USING BREAK AND CONTINUE IN C Program.
#include <math.h>
#include <stdio.h>
main()
{
int i,...
Write a c program to find out L.C.M. of two numbers.
How To Write a c program to find out L.C.M. of two numbers.
#include<stdio.h>
int main(){
int n1,n2,x,y;
printf("\nEnter...
Find g.c.d of two number using c program.
How To Find g.c.d of two number using c program.
#include<stdio.h>
int main(){
int n1,n2;
printf("\nEnter two numbers:");
scanf("%d...
Write a c program to find out H.C.F. of two numbers.
How To Write a c program to find out H.C.F. of two numbers in C Program.
#include<stdio.h>
int main(){
int x,y,m,i;
printf("Insert...
Check the given number is armstrong number or not using c program.
How To Check the given number is armstrong number or not using c program.
#include<stdio.h>
int main(){
int num,r,sum=0,temp;
printf("\nEnter...
Check given number is prime number or not using c program.
How To Check given number is prime number or not using c program.
#include<stdio.h>
int main(){
int num,i,count=0;
...
Write a c program to check given string is palindrome number or not.
How to Write a c program to check given string is palindrome number or not.
#include<string.h>
#include<stdio.h>
int main(){
char *str,*rev;
int i,j;
printf("\nEnter...
TO FIND FACTORIAL OF A NUMBER USING C PROGRAM
How TO FIND FACTORIAL OF A NUMBER USING C PROGRAM.
#include<stdio.h>
int main(){
int i=1,f=1,num;
printf("\nEnter...
COPY DATA FROM ONE FILE TO ANOTHER FILE USING C PROGRAM
How To COPY DATA FROM ONE FILE TO ANOTHER FILE USING C PROGRAM.
#include<stdio.h>
int main(){
FILE *p,*q;
char file1[20],file2[20];
char ch;
printf("\nEnter...
DISPLAY SOURCE CODE AS OUTPUT IN C PROGRAM
How To DISPLAY SOURCE CODE AS OUTPUT IN C PROGRAM.
#include<stdio.h>
int main(){
FILE *p;
char ch;
...
Write a c program to find largest among three numbers using conditional operator
How to Write a c program to find largest among three numbers using conditional operator.
#include<stdio.h>
int main(){
int a,b,c,big;
printf("\nEnter...
Subscribe to:
Posts (Atom)