/*mycfiles.wordpress.com
Program to prepare Table of any no. using while loop*/
#include
#include
void main()
{
int n,t,count=1;
clrscr();
printf("Enter any number\n\n");
scanf("%d",&n);
while(count<=10)
{
t=n*count;
printf("\n%d*%d=%d",n,count,t);
count++;
}
getch();
}
Write a program using recursion which should take two values and display 1st value raised to the power of second value.
this is to write or create
write a c++ program to convert binary number to decimal number by using while statement
write a program that reads a phrase and prints the number of lowercase latters in it using a function for counting? in C program
how to write a program that counts automorphic number from 1 to 999
Recursion is a computer science. Typically computer programers write a specific program to test out a theory of recursion based on the known facts to try to define the variable.
Write a program using recursion which should take two values and display 1st value raised to the power of second value.
this is to write or create
Write a program to convert a 2-digit BCD number into hexadecimal
recu
WRITE A PROGRAM TO CONVERT A 2-DIGIT bcd NUMBER INTO HEXADECIMAL
#include<iostream.h>
Write a program which takes any number of days from the user. the program should display the number of years, number of months formed by these days as well as the remaining days.
write a c++ program to convert binary number to decimal number by using while statement
barsanabegam
write a program that reads a phrase and prints the number of lowercase latters in it using a function for counting? in C program
write a c++program by using if statement to read a number and check whether it is positive or negative