Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(int argc, char *argv[]){
- FILE* fFile = fopen("C:\\test.exe:test.txt", "wb");
- if(fFile == NULL){
- printf("Unable to open file.\n");
- }else{
- fprintf(fFile, "Looks like ADS works!");
- fclose(fFile);
- printf("Content should be written to the file.\n");
- return 1;
- }
- }
Add Comment
Please, Sign In to add comment