C program to convert celsius to Fahrenheit C x #include <stdio.h> int main() { float celsius, fahrenheit; printf("Enter temperature in Celsius: "); scanf("%f", &celsius); //celsius to fahrenheit conversion formula fahrenheit = (celsius * 9 / 5) + 32; printf("%.2f Celsius = %.2f Fahrenheit", celsius, fahrenheit); return 0; } Output C program to check the given number format is in binary or not. . After getting the temperature in Fahrenheit from the user program convert it in Celsius. If you have any difficulty understanding this program, then let us know in the comment section. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. The consent submitted will only be used for data processing originating from this website. Convert temperature in Fahrenheit to Celsius Celsius = Study Resources. Celsius to to Fahrenheit Please enter your . Finally, we print the result on the screen using printf() function. I like writing tutorials and tips that can help other developers. All rights reserved. Its return value gets We are using the following two formulae : fahrenheit = (1.8 * celsius) + 32 celsius = (fahrenheit - 32) / 32 The first one is used to convert a Celsius value to Fahrenheit and the second one is used to convert a Fahrenheit to Celsius. C program to enter the temperature in celcius and convert it into fahrenheit using operators. The temperature is converted from degree Celsius to degree Fahrenheit using the conversion formula: F = (C x 9/5) + 32. Write a program in C+ that converts the following: a. Main Logic to convert celsius to fahrenheit. Save my name, email, and website in this browser for the next time I comment. C Program to find a sum of digits of a number using recursion, C program to swap two number without using the third variable, C program to swap two numbers using third variable. In this post, we will write Fahrenheit to Celsius conversion C Program #include<stdio.h> int main() { float cel, fahr; printf("Enter Fahrenheit value: "); scanf("%f", &fahr); cel = ( (5.0/9.0) * (fahr - 32)); printf("Celsius value = %.2f\n", cel); return 0; } Output for different test-cases:- Enter Fahrenheit value: 210 Celsius value = 98.89 Manage Settings In the above program, the user enters the celsius value and is stored in the celsius variable. fahrenheit = (celsius 9 / 5) + 32. Howdy readers, today you will learn how to write a program to convert Celsius to Fahrenheit using C Programming language. Store it in some variable say fahrenheit. Howdy readers, today you will learn how to write a program to convert Celsius to Fahrenheit using C Programming language. This is how to write a c program to convert Celsius to Fahrenheit. When 5 is treated as double, then the division will be executed correctly. For instance, 220 degrees celsius c equals 428 f. And 200 f to c equals 93.3333 C Program to Convert Fahrenheit to Celsius Formula to convert Fahrenheit to Celsius: (F - 32) / 1.8 = C. The formula used to convert from Celsius to Fahrenheit is given by F= (C * 9/5) + 32; In this post, we will write Celsius to Fahrenheit conversion C Program. Formula to convert temperature from fahrenheit to celcius. If you would like to change your settings or withdraw consent at any time, the link to do so is in our privacy policy accessible from our home page. Save my name, email, and website in this browser for the next time I comment. Write A C Program To Convert Celsius To Fahrenheit - At the University of Arizona College of Education, we believe in the power of education to transform lives, and we are committed to preparing the next generation of teachers, scholars, and leaders through our diverse academic programs for undergraduate and graduate students. fahrenheit = (celsius * 9 / 5) + 32. All rights reserved. Formula's. Celsius To Fahrenheit:-. In this tutorial, we will learn the writing program in c to convert a given temperature from Fahrenheit to celsius. /*. Please mail your requirement at [emailprotected] Duration: 1 week to 2 week. Try (5.0/9) Share Improve this answer Follow answered Jul 10, 2010 at 4:38 user180326 8 Or (celsius + 32) * 5 / 9. And we can use operators to implement the same formula in our C program. f = it will hold Fahrenheit value. How to write a C program to convert Fahrenheit to Celsius with an example. Our program will take a number as an input which we are considering the temperature in Fahrenheit. And we can use operators to implement the same formula in our C program. Apply in the formula. Let us understand this example through the C program: Write A Program To Convert Fahrenheit To Celsius In C: Research Paper, IT Management, 8 pages by Ho Tsou. // Display result cout << "The temperature in degree Fahrenheit: " << fahrenheit << endl; Finally, the equivalent temperature in degree Fahrenheit is printed on the screen using the cout statement. Convert Fahrenheit to Celsius: Celsius = (5/9) * (Fahrenheit - 32)Convert Celsius to Fahrenheit: Fahrenheit = (9/5) * Celsius + 32Convert Celsius . We convert the temperature from degree celsius to degree fahrenheit using the formula, F = (C + 9/5) + 32. In this post, we have declared two float data type variables named celsius and fahrenheit. . initialized to celsius inside the main() function. For better understanding, please have a look at the below image. Required fields are marked *. C = celsius . JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Store it in some variable say celsius. C Program to convert Celsius to Fahrenheit 1 2 3 4 5 6 7 8 9 10 11 #include <stdio.h> int main () { Write a C program to input temperature in Centigrade and convert it to Fahrenheit. In order to do this, we'll need to subtract 32 from the Fahrenheit value, then divide that number by 1.8. Here in this problem we are given three option to the user and user have to choose any one of the first choices is Celsius To Fahrenheit, the second choice is Fahrenheit To Celsius and the Last one is Exit without testing any one of the queries. This is a C language program for Fahrenheit to Celsius Conversion. With this program, you will learn how to take user inputs and how to do mathematical conversions in C. In this example, programmer stores the values in the variables. How to convert temperature from degree centigrade to degree Fahrenheit in C programming. Celsius to Fahrenheit Temperature Converter. Apply the temperature conversion formula celsius = (fahrenheit - 32) * 5 / 9. Copyright Tuts Make . You can convert fahrenheit value to celsius using the formula: celsius = (fahrenheit - 32) / 1.8 Fahrenheit to Celsius 2. PHP program to convert Fahrenheit to Celsius. Enter your choice (1, 2): 1 Enter temperature in Fahrenheit: 98.6 Temperature in Celsius: 37.00 Second Run: 1: Convert temperature from Fahrenheit to Celsius. In this tutorial, we have to convert Fahrenheit to Celsius by using the scientific formula in programmes of different languages. Write A Program To Convert Fahrenheit To Celsius In C, Do My Art & Architecture Argumentative Essay, Popular Annotated Bibliography Writer Website Uk, Umich Essay Word Limit, Paper Title Pages, Literature Review On Metoo Movement, Ucla . This program asks the user to enter the temperature in degree celsius, then it converts the temperature from degree celsius to degree centigrade using the formula: We will convert celsius to fahrenheit using the following methods: So, without any delay, lets begin this tutorial. Algorithm Begin Take the Celsius temperature in C calculate F = (9C/5)+32 return F End Example Code Learn How To Convert Celsius To Fahrenheit in C Programming Language. Java Temperature Convert Method ( C to F) public class Converter { public static void main (String [] args) { Celsius c = new Celsius (0); Fahrenheit f = c.toFahrenheit (); System.out.println ("In Celsius: "+c.temp+" | In Fahrenheit: "+ f.temp); } } To sum up, Java programs can be used to convert Fahrenheit to Celsius just by using the same . Some of our partners may process your data as a part of their legitimate business interest without asking for consent. Celsius to Fahrenheit C Program Conversion from Celsius to Fahrenheit and from Fahrenheit to Celsius has an important role in the conversion of units system. Write A C Program To Convert Fahrenheit To Celsius, Nurse Hand Off Report Sheets, Cheap Resume Writer Sites Usa, Custom Cover Letter Ghostwriters Sites For University, Best Home Work Ghostwriting Site, Cover Letter Examples Human Resources, Example Business Plan Consulting Services Note: This program requires you to use loops, functions, and formatted output so your program must demonstrate these requirements. An example of data being processed may be a unique identifier stored in a cookie. Java Programming Coding Interview questions, Python Programming Coding Interview questions, Unit 2: Medium Access sub-layer (Data Link Layer), Unit 3: Database Design and Normalization, Unit 4: Advanced Design and Analysis Techniques, Unit 1: Introduction to Web Technology and Core Java, Complete Overview of Software Project Management, Unit 1: Introduction and Software Project Planning, Unit 2: Project Organization and Scheduling, Unit 4: Software Quality Assurance & Testing, Unit 5: Project Management and Project Management Tool, Java Program to Perform Left Rotation on Array Elements by Two, Java Program to Perform Right Rotation on Array Elements by Two, Java Program to Print Odd Numbers from Array, Java Program to Print All Even Numbers in Array, Java Program to Find the Sum of Array Elements, Java Program to Delete Element of Array At Given Location, Java Program to Delete a given Element of Array, Java Program to Delete Element at End of Array, Java Program to Insert Element in Array at given Location, Java Program to Insert Element At the End of Array, Reverse Array without using Second Array or inplace Reversal Java Program, Java Program to Print Array in Reverse Order, Java Program to Sort String Character in Descending order, Java Program to Sort String in Ascending Order, Java Program to Print non Repeating Characters in String, Java Program to Find Sum of Integers in the String, Java Program to Remove Duplicates From String, Java Program to Check if two Strings are Same, Core Java Programming Interview Questions, C program to reverse a number with explanation, C Program to check the given number is an Armstrong or not, Prime number program in C with explanation. Developed by JavaTpoint. its equivalent value in Celsius as shown in the snapshot given below: Let's create the same purpose program using a user-defined function FahrenheitToCelsius(). Some of our partners may process your data as a part of their legitimate business interest without asking for consent. Divide this number by 9 to obtain the temperature in degree Celsius. C respectively. Here is its sample run with user input as 98: Note - The \370 is used to print degree (o). Sample Output: Convert temperature in Fahrenheit to Celsius : --------------------------------------------------- Input the temperature in Fahrenheit : 95 The temperature in Fahrenheit : 95 The temperature in Celsius : 35 Flowchart: C++ Code Editor: Contribute your code and comments through Disqus. Formula for converting Fahrenheit scale to Celsius scale. As we know the formula is simple. Author: RajaSekhar. Algorithm to Convert Fahrenheit to Celsius Use the following algorithm to write a program to convert Fahrenheit to Celsius; as follows: Start program. with the formula given above. c= it will hold Celsius value. Below is the step by step descriptive logic to convert temperature from degree Celsius to Fahrenheit. . Refer to the algorithm given below to convert Fahrenheit to Celsius. takes fahrenheit value as its argument and returns its equivalent Celsius value. However, if you interested to see the program about taking values in the form, please see example 2. The fact is that "/" looks at the operand type. Now we will use Fahrenheit to Celsius conversion formula which is. Temprature Conversion Program 1. Use ( 5.0/9.0) instead. About Press Copyright Contact us Creators Advertise Developers Terms Privacy Policy & Safety How YouTube works Test new features Press Copyright Contact us Creators . Recommended: Please try your approach on {IDE} first, before moving on to the solution. C Program to Convert Binary to Decimal Number, C Program to Convert Binary to Octal Number, C Program to Convert Centimeter to Meter and Kilometer, C Program to Convert Kilometer to Meter Centimeter and Millimeter, C Program to Convert Celsius to Fahrenheit, C Program to Convert Decimal to Binary Number, C Program to Find First Digit Of a Number, C program to Find First and Last Digit of a Number, C Program to Find Generic Root of a Number, C Program to Calculate Gross Salary of an Employee, C Program to Print Natural Numbers from 1 to N, C Program to PrintNatural Numbers From N to 1 in Reverse Order, C Program to Check Whether a Number is Palindrome or Not, C Program to Check Whether a Number is Prime or Not, C Program to PrintPrime Numbers from 1 to N, C Program to Find Prime Factors of a Number, C Program to Swap First and Last Digit Of a Number, C Program to find the Sum of First n Natural numbers, C Program to Print Number of Days in a Month, C Program to Find Number of Days in a Given Month and Year, C Program to find All Occurrence of a Character in a String, C Program to find ASCII Value of All Characters in a String, C Program to Convert Character to Uppercase to Lowercase, C Program to Convert Lowercase Character to Uppercase Character, How to Create Directories in Linux using mkdir Command, How to Install and Use Ckeditor in Laravel 9, Laravel 8 CRUD Application Tutorial for Beginners, Angular 14 Reactive Forms Validation Tutorial Example, 3Way to Remove Duplicates From Array In JavaScript, 8 Simple Free Seo Tools to Instantly Improve Your Marketing Today, Ajax Codeigniter Load Content on Scroll Down, Ajax Codeigniter Load More on Page Scroll From Scratch, Ajax Image Upload into Database & Folder Codeigniter, Ajax Multiple Image Upload jQuery php Codeigniter Example, Autocomplete Search using Typeahead Js in laravel, Bar & Stacked Chart In Codeigniter Using Morris Js, Calculate Days,Hour Between Two Dates in MySQL Query, Codeigniter Ajax Image Store Into Database, Codeigniter Ajax Load More Page Scroll Live Demo, Codeigniter Crop Image Before Upload using jQuery Ajax, Codeigniter Crud Tutorial With Source Code, Codeigniter Send Email From Localhost Xampp, How-to-Install Laravel on Windows with Composer, How to Make User Login and Registration Laravel, Laravel Import Export Excel to Database Example, Laravel Login Authentication Using Email Tutorial, Sending Email Via Gmail SMTP Server In Laravel, Step by Step Guide to Building Your First Laravel Application, Stripe Payement Gateway Integration in Laravel. We will write the C program to convert Celsius to Fahrenheit. 1. Let's start with the formula to convert Fahrenheit to Celsius. Convert temperature in Fahrenheit to Celsius Celsius = ((Fahrenheit * 5.0) - (5.0 * 32)) / 9. In this tutorial, we have to convert Fahrenheit to Celsius by using the scientific formula in programmes of different languages. This C Program For Temperature Conversion from Celsius into Fahrenheit is developed using Simple Mathematical Operators in C Language. Fahrenheit= (Celsius*9/5)+32; Temperature Conversion From Celsius to Fahrenheit C Program. Store it in some variable say celsius. Example: F= 97 degree centigrade The formula of Fahrenheit to Celsius is: C= (F - 32) * 5/9= 36.11 In this program, we use going to use the following data type Output of the above program: Enter temperature in celsius: 47 47.00 Celsius = 116.60 Fahrenheit 47.00 Celsius = 320.15 Kelvin Note: indicates ENTER is pressed. 2: Convert temperature from Celsius to Fahrenheit. The formula is as follows: F = (9/5) C + 32. We and our partners use cookies to Store and/or access information on a device. Step 1: Apply formula to convert the temperature to Fahrenheit i.e. Continue with Recommended Cookies. Enter your choice (1, 2): 2 Enter temperature in Celsius: 37.0 Temperature in Fahrenheit: 98.60 Third Run: 1: Convert temperature from . Mail us on [emailprotected], to get more information about given services. Print Celsius. Step 1: Declare two variables farh, cels Step 2: Enter Fahrenheit value at run time Step 3: Apply formula to convert Cels= (farh-32)*5/9; Step 4: Print cels. Use the following algorithm to write a program to convert Celsius to Fahrenheit; as follows: Start program. To convert the temperature from fahrenheit to celsius, follow the following steps: Take the temperature in Fahrenheit and subtract 32. equivalent value in degree Celsius.. C++ Program to Convert Celsius to Fahrenheit The math formula behind the temperature conversion from degree Fahrenheit to Celsius in C is: Celsius = (5 / 9) * (Fahrenheit - 32). Take an input fahrenheit and store into a variable. Here is its sample run: Now supply the temperature input in Fahrenheit say 80 and press ENTER key to convert and prints Your email address will not be published. fahrenheit = 82 celsius * 1.8 = fahrenheit - 32 or celsius = (fahrenheit - 32) / 1.8 Fahrenheit = (Celsius * 9/5) + 32 C. C++. 8 Answers Sorted by: 24 (5/9) will by default be computed as an integer division and will be zero. Logic to find Fahrenheit to Centigrade. In case of int the result is also an int, so you have 0. We and our partners use cookies to Store and/or access information on a device. In the given program, we have taken input 23 from the user then we applied arithmetic operations using the standard formula of celsius to Fahrenheit conversion on the given input. Write a program that converts Celsius temperatures to Fahrenheit temperatures. fahrenheit = float(input("Enter temperature in fahrenheit: ")) celsius = (fahrenheit - 32) * 5/9 print('%.2f Fahrenheit is: %0.2f Celsius' % (fahrenheit, celsius)) Output: In the following program user enters the temperature in Fahrenheit and the program converts the entered value into Celsius using the Fahrenheit to Celsius conversion formula. Last updated on September 24, 2020. We will be glad to solve your query. Copyright 2011-2021 www.javatpoint.com. We will write one program that will take the value of celsius from the user and print out its fahrenheit value. Celsius to Fahrenheit Formula Explained. I hope after going through this post, you understand how to write a program to convert Celsius to Fahrenheit using C Programming language. C Program to convert the temperature in Fahrenheit to Celsius. #include <stdio.h> int main() { float celsius, fahrenheit; Print the value of fahrenheit. Our program will take a number as a input which we are considering temperature in celsius. To convert temperature from Fahrenheit to Celsius in C++ programming, you have to C Program to Convert Celsius to Fahrenheit, C Program to Convert Celsius to Fahrenheit Using Functions, C Program to Find Sum of Main Diagonal Elements of a Matrix, C Program to Make a Simple Calculator Using switchcase, Python Program to Print Non-Square Numbers. To convert any temperature from degree Celsius to degree Fahrenheit, use the following formula: F = (C * 1.8) + 32 where F indicates the value of Fahrenheit and C indicates the value of Celsius. What is the formula for converting temperatures? Continue with Recommended Cookies. In this tutorial, we have to convert Celsius to Fahrenheit by using the scientific formula in programmes of different languages. After this calculation result will be temperature in fahrenheit. We are going to write a 'c' program to convert the given temperature from Fahrenheit to Celsius and vice versa. There are you will learn how to convert the temperature in Fahrenheit and convert it to Celsius in C language. Fahrenheit = (Celsius * (9/5)) + 32. ask from user to enter the temperature in Fahrenheit first. After this calculation result will be a temperature of Celsius. Formula's Celsius To Fahrenheit:- Fahrenheit = ( Celsius * 9 / 5 ) + 32; Fahrenheit To Celsius:- Answer (1 of 2): [code]double fahrenheitToCelsius(double f) { return (f - 32)*(5/9) } [/code]F=C\times\frac{9}{5}+32 F-32=C\times\frac{9}{5} (F-32)\times\frac{5}{9}=C . You should also read these things. To convert the temperatures from python Celsius to Fahrenheit and vice versa, understand these 2 formulas: Formula to convert Celsius to Fahrenheit: (C * 1.8) + 32 = F. In this program we will see how to convert Celsius to Fahrenheit using C++. Step by step descriptive logic to convert temperature from degree Fahrenheit to degree Celsius - Input temperature in fahrenheit from user. To convert celsius to fahrenheit, we will use below expression: F = (9/5)*C + 32; where, C is the temperature in Celsius and F is temperature in Fahrenheit. Then, we call this custom function cel_to_fahren in the main function. If the letter is 'f', the program should treat the number entered as temperat. The program will take the inputs from the user and print out the result. C C++ Java Python3 C# PHP Javascript /* C Program to convert temperature from Celsius to * Fahrenheit*/ #include <stdio.h> float celsius_to_fahrenheit (float N) { return ( (N * 9.0 / 5.0) + 32.0); } For converting temperature from celsius to fahrenheit, there is a standard formula, that is : fahrenheit = (celsius * 9 / 5) + 32 or fahrenheit = (celsius * 1.8) + 32. Given a temperature in Celsius, we have to convert it to fahrenheit and print it on screen. In this example, we will take the inputs from the user and store them in variables. In this article, you will learn and get code on temperature conversion, that is the conversion of a temperature Given a Temperature n in Fahrenheit scale convert it into Celsius scale . It is very easy to convert the temperature from Fahrenheit to Celsius. also be written as: If you're curious to know about the concept behind the formula, then refer to To convert temperature given in Fahrenheit to its equivalent value in Celsius, use following formula: Where C and F indicates to the value of Fahrenheit and Celsius. CELCIUS = ( (FAHRENHEIT-32)*5)/9. #include<stdio.h> #include<conio.h> void main() { float celsius, fahrenheit; clrscr(); printf("\n Enter Temp in Celsius : "); . Write a C program to Convert Fahrenheit into. This function Fibonacci series program in C using iteration. Examples: Input : 32 Output : 0 Input :- 40 Output : -40. Enter a celsius value: 55 55 degree celsius is equal to 131 degree fahrenheit. Whatsapp. This program will be simple because we have a mathematical conversion formula to convert Fahrenheit to Celsius. And then convert it into its equivalent value in Celsius Flowchart of a program to convert a temperature in Celsius to Fahrenheit Program to convert a temperature in Celsius to Fahrenheit in c++ C++ 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<iostream> #include<conio.h> using namespace std; int main() { float C; float F; FAHRENHEIT = (CELCIUS * 9 / 5) + 32. Step 1: Input temperature in Celsius from user. Convert to fahrenheit to Celsius using fahrenheit - 32)*5/9. oC respectively. Main Menu; . To view the purposes they believe they have legitimate interest for, or to object to this data processing use the vendor list link below. Write a C program to convert fahrenheit to celsius. With the help of these 2 formulas, the user can easily make use of the program given above to How do you . It converts Fahrenheit to Celsius using formula: Celsius = (Fahrenheit - 32) * 5.0 /9.0. The consent submitted will only be used for data processing originating from this website. Program to convert Celsius into Fahrenheit on fibonacci, factorial, prime, armstrong, swap, reverse, search, sort, stack, queue, array, linkedlist, tree, graph etc. As well as demo example. Step 2: Print the value of fahrenheit. Take an input fahrenheit and store into a variable. Here is its answer: This program was build and run under Code::Blocks IDE. Stop program. In this video, we will take the temperature from the user in a Celsius and we will convert that temperature into. Multiply this number by 5. #Get the temperatures in Celsius Take an input celsius and store into a variable. C program to convert Fahrenheit to Celsius; Through this tutorial, we will learn how to convert Fahrenheit to Celsius in c program. The formula behind the temperature conversion of Celsius to Fahrenheit in C is: Fahrenheit = (9/5) * Celsius) + 32 C program to convert Celsius to Fahrenheit This C program to change Celsius to Fahrenheit lets the user enter the temperature value in Celsius. Given F = 9 5 C + 32, the conversion formula for Fahrenheit to Celsius, solve for C. 2. celsius = 5 * (fahrenheit - 32) /9; Now, we use the mathematical formula C = (F - 32) 5/9 to convert the temperature from degree Fahrenheit to degree Celsius. Write a C program to convert temperature from fahrenheit to celsius. - Gabe Jul 10, 2010 at 4:40 Add a comment 6 Fahrenheit to celsius would be (Fahrenheit - 32) * 5 / 9 Share Improve this answer Follow In this program, we have defined a custom function named cel_to_fahren which converts the temperature from Celsius to Fahrenheit. The formula of Fahrenheit to Celsius is C= (F - 32) * 5/9, where, F is degree Fahrenheit and C is Celsius Fahrenheit. How to write a C program to convert Celsius to Fahrenheit with an example. Our program will take a number as an input which we are considering the temperature in Fahrenheit. This is how it should look like: Question: C++ Write a program to convert from Celsius to Fahrenheit Table or Fahrenheit to Celsius Table with a given range. By using this formula, we can write C program to convert celsius to fahrenheit. The question is, write a program in C++ that receives temperature in degree Fahrenheit and prints its Manage Settings Points to Remember Fahrenheit temperature scale was introduced around 300 years ago, and is currently used in USA and few other countries. Celsius = (Fahrenheit - 32) * 5/9 We will be using the above formula in our program to convert Fahrenheit to Celsius. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. We and our partners use data for Personalised ads and content, ad and content measurement, audience insights and product development. Note: This program requires you to use loops, functions . Convert to fahrenheit to Celsius using fahrenheit 32)*5/9.
Organic Sweet Potato Slips Near Me, How To Write Autoethnography, Thoughts And Insights About The 21st Century Skills Assessment, Latest Eclipse Version, Does Apple Cider Vinegar Keep Ants Away, Java 2d Game Development Tutorial Pdf, Truck Simulator : Europe, Angular Kendo Tooltip, One Who Perseveres Crossword Clue, Construction Civil Engineering Jobs Near Berlin, Cardhu Gold Reserve 1824,