answersLogoWhite

0

write a c program to accept a number and generate a square root cube and exponential values

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a program to accept 2 numbers and tell whether the product of the two number is equal to or greater than 1000?

C programm


Accept 5 numbers in an array and display it?

Accept 5 numbers in an array and display it.


How can you accept sum and print numbers without creating variables?

It is very easy. The program begins here..... /*Program to sum and print numbers without creating variables*/ #include<stdio.h> main() { clrscr(); printf("%d+%d=%d",5,2,5+2); getch(); } /*Program ends here*/ Now just by changing the numbers in the "printf" statement we can add, subtract, multiply and divide the numbers without using variables. Hence the problem is solved..........


Write the program in qbasic and add two numbers?

Cls input "enter two no.s ",a,b sum=a+b print "sum = ";sum end


How do you write BASIC program to accept variables?

dim a input a


A flowchart to Accept three numbers and check whether it firms to Pythagorean triplet?

Accept 3 natural numbers and check whether it firms pythagorean triplet


In program c accept numbers num1 and num2 find the sum of all add numbers between the two numbers entered?

#include<stdio.h> main() { int num1; int num2; int a; printf("Enter any two numbers :"); scanf("%d%d",&num1,&num2); for(a=num1;num1<=num2;a++) { if ( a % 2 == 1); { printf("%d",a); } } getch(); }


How do you accept three numbers weather it is equal or unequal?

How_do_you_accept_three_numbers_and_check_weather_the_numbers_are_equal_or_unequal_if_it_is_unequal_find_the_greatest_number_among_them


How to write a program to accept the user name and password and then shop this is your Password?

you cant


Do banks accept credit privacy numbers?

What is a credit privacy number???


Which numbers are integers?

All number accept 0, SCROLL DOWN


Java applet program to accept two numbers in text field and add two numbers?

package AddNumbers; public class AddNumbers { public static void main(String[] args) { int Int; int a = 4; int b=5 ; int sum = a + b; System.out.println("Addition of two numbers!"); System.out.println("Sum: " + sum); } }