Write a program that illustrate creation of a data file, C/C++ Programming

Assignment Help:

Write a Program that illustrate creation of a data file?

Here is a program to generate a Fibonacci series and write it into a Data file.

# include
main()
{
FILE *fpt;
int a=0,b=1,c,n=10;
fpt=fopen("fib.dat","w");
fprintf(fpt,"%d\t%d",a,b);
for(i=0;i {
c=a+b;
fprintf(fpt,"%d",c);
a=b;
b=c;
}
fclose(fpt);
}

The program starts by defining the stream pointer fpt, indicating the beginning of the data-file buffer area. A new data file that called as fib.dat is then opened for writing only. Next a for loop execute a series of operations and writes their result to the data file. The fprintf function is used to write every result to the data file. Notice that the fprintf needs specification of the stream pointer fpt as an argument.


Related Discussions:- Write a program that illustrate creation of a data file

How to define a structure, How to Define a Structure? Structure declara...

How to Define a Structure? Structure declarations are rather more complicated than array declarations, ever since a structure must be defined in terms of its individual members

Can i overload operator == so it allow me compare two char[], Q: Can I over...

Q: Can I overload operator == so it allow me compare two char[] by a string comparison? A: No: at least one operand of particular overloaded operator should be of some user-defi

C CODING, HOW THE C PROGRAM CODING IMPLEMENTED DY ITSELF UNDERSTANDING . AL...

HOW THE C PROGRAM CODING IMPLEMENTED DY ITSELF UNDERSTANDING . ALSO HOW I CAN A BECOME A GOOD PROGRAMMER IN C WHAT I DO FOR GOOD PROGRAMMING ,TELL ME HOW C CODING DEVELOP DY ITSELF

Explain call by reference, Call by Reference Passing variables(paramete...

Call by Reference Passing variables(parameters) to a function in C can be done in two ways - pass by value, also called as call by value and pass by address or also known as ca

Define the recursion function in c, Define the Recursion Function in C? ...

Define the Recursion Function in C? In C, it is potential for the function to call themselves a function is describing 'recursive' if a statement within the body of a function

C program for rotation, Normal 0 false false false EN-U...

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4

When i throw this object, A: Depends. Might be "zero" Objects which are ...

A: Depends. Might be "zero" Objects which are thrown must have a publicly accessible copy-constructor. The compiler is permitted to generate code which copies the thrown object

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