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

Singly linked list, For this program you will add and test 2 new member fun...

For this program you will add and test 2 new member functions to the IntSLList class posted on the website. The two member functions are: insertByPosn(int el, int pos) Assuming t

Explain the loop statements in computer programming, Explain the Loop State...

Explain the Loop Statements in Computer Programming? 1. C gives you a choice of three kinds of loop, while, do while and for. 2. The while loop remain repeating an action until

Why are all header files not declared in every c program, Why are all heade...

Why are all header files not declared in every C program? - Declaring all header files in each program would result in increase in overall file size and load of the program. It

Graphics, demonstrates shearing about origin

demonstrates shearing about origin

Strings, A string S is said to be "Super ASCII", if it contains the charact...

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

Illustrate the example of constructor, A Constructive Example Consider ...

A Constructive Example Consider an example , to model a user-defined data type for  strings. The object simulates a character array ( string ) using a character pointer and an

C program to display the contents of file on a screen, Program is to displa...

Program is to display the contents of file on a screen: Write a program to display the contents of file on a screen void main()   {  clrscr();  ifstream fin("ascii

Array, write a function that take as parameters an array of integer and its...

write a function that take as parameters an array of integer and its size and return the sum of its value

Binary search tree is constructed by repeatedly, Assume that a Binary Searc...

Assume that a Binary Search Tree is constructed by repeatedly inserting exact values in to the tree. Argue that the number of nodes examined in searching for a value in the tree is

Change to palindrome, convert string s into palindrome by doing character r...

convert string s into palindrome by doing character replacement

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