Our Blog Contain Detail about Some Technical Aspect like Programming, Blogger, Tools and Tip, Suggestion, Motivational, Health, Program in C and Java, Html

Write a program to display digit of a five-digit no

 Write a program to receive a five-digit no and display as like 24689:24689Program in C Language#include<stdio.h>#include<conio.h>#include <math.h>void main(){      int num,i;    printf ("Input a five digit number: ");   ...
Share:

Write a program to draw the following figure

Write a program to draw the following figure:3 2 1211******Program in C Language#include<stdio.h>#include<conio.h>void main(){     int i,j;     for(i=3;i>=1;i--)     {           for(j=i;j>=1;j--) ...
Share:

Write a function that return sum of all the odd digits of a given positive no entered through keyboard

Write a function that return sum of all the odd digits of a given positive no entered through keyboard#include<stdio.h>#include<conio.h>int sumodd(int num){     int sum=0,i;     for(i=0;i<=num;i++)     {   ...
Share:

Write a program to find sum of Fibonacci series using function.

 Write a program to find sum of Fibonacci series using function.#include<conio.h>#include<stdio.h>int sumfab(int num){     int a=1,b=1,sum=2,i,c;     printf("%d,%d,",a,b);     for(i=3;i<=num;i++)     { ...
Share:

Write a program to calculate the factorial for given number using function.

 Write a program to calculate the factorial for given number using function.Factorial for given number without using function#include<stdio.h>#include<conio.h>void main(){     int i,n;     int fact=1;     printf("enter...
Share:

Write a program to print the entire prime no between 1 and 300.

Write a program to print the entire prime no between 1 and 300. Program in C language#include<stdio.h>#include<conio.h>int IsPrime(int num){     int i,b=1;     for(i=2;i<num;i++)     {       ...
Share:

Write a program to generate sum of series 1!+2!+3!+--------------n!

Write a program to generate sum of series 1!+2!+3!+--------------n!In order generate sum of series 1!+2!+3!+--------------n! there is need to take help of function that can able to calculate the factorial of any number Program in C language#include<stdio.h>#include<conio.h>int...
Share:

Write a program to print out all the Armstrong number between 100 and 500.

Write a program to print out all the Armstrong number between 100 and 500.Program in C Language#include<stdio.h>#include<conio.h>int checkams(int num);void main(){     int i;     for(i=100;i<=500;i++)     {   ...
Share:

Write a program to find the largest of three numbers using nested if else

 Write a program to find the largest of three numbers using nested if else.INDEXIntroduction to problemAlgorithm FlowchartProgram in C languageOutputIntroduction to ProgramIn this problem statement, we have three number and out of these three number we have to find,...
Share:

Write a program in C to find whether the number is Armstrong number.

 Write a program to find whether the number is Armstrong numberIndexIntroductionAlgorithm of Problem Flow Chart Program in C Out PutIntroduction Armstrong number is the number whose digits cube is sum together we get the same number ex 370 in this number...
Share:

Write a Program in C to calculate the Net Salary if basic salary is given

Basic salary of an employee is input through the keyboard. The DA is 25% of the basic salary while the HRA is 15% of the basic salary. Provident Fund is deducted at the rate of 10% of the gross salary (BS+DA+HRA). Program to calculate the Net Salary.IndexIntroduction to ProblemAlgorithm...
Share:

Write a program to calculate the area of triangle using formula at=√s(sa)(s-b)(s-c)

 Write a program to calculate the area of triangle using formula at=√s(sa)(s-b)(s-c)Index Introduction Algorithm of give Problem Flow ChartProgram in C language Out put Introduction In this Problem Statement we have to calculate the area of...
Share:

List the various types of loop available in C and explain any one with the syntax and suitable example.

 List the various types of loop available in C and explain any one with the syntax and suitable example.Index1. What is Loop2. Various Type of Loop3. Example of Loop Ans: What is LoopLoops:-Loops are the statement used to execute a sequence of instruction repeatedly. Various...
Share:

What do you mean by an Array || How to declare and initialize 1-D array in C

What do you mean by an Array ? How to declare and initialize 1-D array in C? What is a limitation of an array? Write a program to perform the addition of 3x3 matrices using an array.Index1. What do you mean by an Array 2. How to declare and initialize...
Share:

Translate

Followers

Email Subscription

Enter your email address:

Delivered by FeedBurner

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.