Write files using C programming in 5 minutes! ✍️

preview_player
Показать описание
#coding #programming #cprogramming

// WRITE A FILE

char text[] = "BOOTY BOOTY BOOTY\nROCKIN' EVERYWHERE!";

if(pFile == NULL){
printf("Error opening file\n");
return 1;
}

fprintf(pFile, "%s", text);

printf("File was written successfully!\n");

fclose(pFile);

return 0;
Рекомендации по теме
Комментарии
Автор

#include <stdio.h>

int main() {

// WRITE A FILE

FILE *pFile = fopen("output.txt", "w");

char text[] = "BOOTY BOOTY BOOTY\nROCKIN' EVERYWHERE!";

if(pFile == NULL){
printf("Error opening file\n");
return 1;
}

fprintf(pFile, "%s", text);

printf("File was written successfully!\n");

fclose(pFile);

return 0;
}

BroCodez
Автор

please can you talk about low level concepts like process, sockets, multithreading

ALEX
Автор

My Mind Be Like :

"
1.) Read All User File

2.) Use Crypto Library To Change User File To Be Unreadable

3.) Compile It To Execute File


Tadaaa, , , You Already Make Mini Version Of Wannacry
"
😂😂😂

RISE_BEFORE_YOU_GREECE
visit shbcf.ru