Posts

Showing posts with the label c
Dummy E-com API for Staging and Development   https://dummy-ecom-api.herokuapp.com Why Dummy E-com API? A Dummy API is useful during development and testing when live data is either unavailable or unreliable. As someone who wants to practice developing e-commerce websites, it might be hard to find any dummy data to use as a placeholder throughout the development phase. Some e-commerce platform provide APIs but, these APIs are complex in implementation and includes Authorization.    Features Supports Pagination. Supports Dummy users. Supports filter like, product name, price range, ratings range, total sales, category.  Supports Token authentication. Each products has 3 different size of images.       GET YOUR API KEY

How to make C program to convert Fahrenheit into Celsius

How to make C program to convert Fahrenheit into Celsius Temperature conversion formula Temperature conversion formula from degree Celsius to Fahrenheit is given by - Celsius = 5/9(Farenhite - 32) The logic to convert temperature from Celsius to Fahrenheit The logic of temperature conversion exists in converting the mathematical formula to C expression. You just need to convert mathematical formula of temperature in C language. Rest is simple input/output. Below is the step by step descriptive logic to convert temperature from degree Celsius to Fahrenheit. Input temperature in Celsius from the user. Store it in some variable say  celsius . Apply formula to convert the temperature to Fahrenheit i.e. fahrenheit = (celsius * 9 / 5) + 32 Print the value of  Fahrenheit .                  Program to convert temperature from Celsius to Fahrenheit /** * C program to convert temperature from degree celsius to ...