#include < fstream.h > void main() { ofstream tstfile("out.dat"); char txt[]="Intellingent Students"; int i=0; while(txt[i]) tstfile.put(txt[i++]); tstfile.close(); }
Our aim is to provide information to the knowledge seekers.