Is it a file or a folder you want to create? Use open/creat/fopen for the former, mkdir for the latter.
Example:
FILE *f;
int rc;
rc= mkdir ("C:\\AA");
if (rc) perror ("Error in mkdir");
f= fopen ("C:\\AA\\MYNEWFILE.TXT", "w");
if (f==NULL) perror ("Error in fopen");
A source code file is a plain-text file containing C++ instructions. The instructions must be compiled and linked to create a native machine code executable.
No. The standard does not define nor require a file concept.
Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.
tanga
I think its in conio.h or stdio.h
You can create an exe-file from your C++ source, if you have a compiler.
A source code file is a plain-text file containing C++ instructions. The instructions must be compiled and linked to create a native machine code executable.
Yes. You can either create a file for both reading and writing, or you can re-open a file for reading after creating and writing to it.
Whenever you open a file using the function open of fstream class (header file) by using one of it's object you have created, the file is created automatically.You can do it this way:fstream filer;filer.open("Student.dat",ios::out);//This will create a file.This is just a code segment.
fopen()
No. The standard does not define nor require a file concept.
Yes, you can rewrite a cuda program originally written in c in c plus plus.
Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.
There's no commands in C++.
tanga
Copy the first file then append the second file to the copy.
There are no "notebook files"; C++ sources are ordinary text files. When you save a file from NotePad, select File/SaveAs and select 'file type: all', then enter the name, e.g. myprogram.cpp