Write a program to compute the equation, C/C++ Programming

Assignment Help:

  Write a program to compute the following equation for values of time.  
 
      y = 2x+3
 
The values of time are stored in the file program.dat and the solution should be displayed on the screen and stored in a file called program.out.
 
Answer
 
  #include stdio.h
  #include stdlib.h
  void main()
    {
    char prompt;
    
     Date: 26th August 2012 
    Version 1.0 
    Function : ASCII file handling       
     Modifications:   none*/
 
  /* Define I/O streams */
  FILE *fptr,*fptw;
  float x,y;
  fptr = fopen("program.dat","r");

  if (fptr == NULL)  
  {
  /* Check for error */
  printf("Cannot find the file program.dat\n\r");
  exit(1);
  }
  fptw = fopen("program.out","w");
  if (fptw == NULL)
  {
    /* Check for error */
 
  printf("Cannot create a new file called program.out");
  fclose(fptr);
  exit(1);
  } 
  while (fscanf(fptr,"%f",&x) != EOF)
  {
  /* This repeats the read till fscanf returns back an End of file marker i.e No 
data left */
   y = 2*x+3;
  printf("X = %f Y=%f\n\r",x,y);
  fprintf(fptw,"X = %f Y=%f\n\r",x,y);
  }
  printf("I have finished the computation\n\r");
  fclose(fptr);
  fclose(fptw); 
  printf("Press and key to exit \n\r");
  scanf("\n%c",&prompt);
  }
 
Original data can be entered using the application 'NOTEPAD', or 'Edit' likewise the output can be read by Notepad or any word processor set to text mode.


Related Discussions:- Write a program to compute the equation

Luminous Jewels - The Polishing Game, First line starts with T, number of t...

First line starts with T, number of test cases. Each test case T contains a necklace (N).

Super ASCII String Cost, A string S is said to be "Super ASCII", if it cont...

A string S is said to be "Super ASCII", if it contains the character frequency equal to their ascii values. String will contain only lower case alphabets (''a''-''z'') and the asci

Source code, I hv an assignment to do, I almost done. But i cant find whats...

I hv an assignment to do, I almost done. But i cant find whats wrong- my code is to make a simple calculator using function''s all 4 patterns. I did like this- #include int add

#title prime number or not, to find prime numbers upto any number say "n" e...

to find prime numbers upto any number say "n" entered by user

Password Validation Prgram in C++, Create a .cpp program that verifies the ...

Create a .cpp program that verifies the strength of a password that a user is entering is strong (complex/secure) enough. In the main area of the program, prompt the user to enter

Hotel reservation, •Flow Chart and Pseudocode of Add module - Hotel booking...

•Flow Chart and Pseudocode of Add module - Hotel booking - Signup for new membership Delete module - Hotel reservation cancellation - Change of reservation

Write a program for calculating value of an integer, Write a Program for Ca...

Write a Program for Calculating Value of an Integer? For a clear understanding of recursive function we shall see an illustration for calculating value of an integer. main() {

Palindrome, A palindrome is a string that reads the same from both the ends...

A palindrome is a string that reads the same from both the ends. Given a string S convert it to a palindrome by doing character replacement. Your task is to convert S to palindrome

Answer, what is spanning tree? explain prims algorithm spanning tree?

what is spanning tree? explain prims algorithm spanning tree?

Keywords in cpp, Define Keywords in C++ K e y w o r d s: ...

Define Keywords in C++ K e y w o r d s: K e y w o rd s a r e t h e w o rd s a l r e a d y u s e d b y C + + i n i t s c

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd