answersLogoWhite

0

c is programming laungage

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What a program that accepts two numbers and tell whether the product of the two number is equal to or greater than 1000?

You can create a simple program in Python to achieve this. The program will prompt the user to input two numbers, calculate their product, and then check if the product is equal to or greater than 1000. If it is, the program will print a message confirming that; otherwise, it will indicate that the product is less than 1000. Here's a quick example: num1 = float(input("Enter the first number: ")) num2 = float(input("Enter the second number: ")) if num1 * num2 >= 1000: print("The product is equal to or greater than 1000.") else: print("The product is less than 1000.")


Write a program to find the product of two numbers using Halving and Doubling method?

i need this answer


What is the program to calculate the average of first 'n' natural numbers?

printf ("%g\n", (n+1.0)/2);


What is a program that allows a user to enter rows and columns of numbers into main memory and to perform calculations on the numbers that have been entered?

The program is a Spreadsheet. eg Microsoft Excel


How does one use french letters on Windows without downloading a program?

You can use Alt codes, which are codes that can be entered by holding down the Alt key as you enter numbers on the numpad.


C plus plus program calculate the power value of input base and exponent numbers?

cn = c0 *( 1 + i ) pow n


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


What real-life situations are prime numbers used?

Large prime numbers are used in encryption. The larger the primes, the better the encryption. Typically each of two people will provide a prime; you need to know both prime numbers to decrypt. A program is used to calculate the values to be sent. The message is sent along with the product of the primes (sender's prime * receiver's prime). Since the number will be large it is difficult to crack (again, larger the better). To decrypt you have to know both prime numbers. Knowing one and the product makes it easy (just divide). If you only have the product, decrypting can be very time-consuming as you are forced to find the factors of the number


What is the relationshjip between a computer program and an algorithm?

A computer program can use a pre-programmed Algorith to calculate what you want it to calculate.


What is an advertisement for a spreadsheet program?

An advertisement for a spreadsheet program would tell about spreadsheets. The ad might talk about how quickly spreadsheets can help you organize data and calculate numbers. It also would list many of the benefits of using spreadsheets.


Program in 'c' to find the LCM of any given five numbers?

Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.


What is the output displayed by the following program when the data entered are 5 and 7?

Impossible to say without seeing the program's source.