118 subscribers
64 photos
39 videos
2 files
48 links
Freedom through power. Power through intelligence.
Download Telegram
real
🤝21💘1
کامیت هارو باش
🍌21💘1
🎉21🙉1
🥱21💘1
🎃21🙉1
از این به بعد خروجی لینوکس هم براتون میگیرم
ولی برای iOS و..
فعلا شدنی نیست اگه خودتون مک دارید میتونید خروجی بگیرید
اول داکیومنت و کامل بخونید و بعد اقدام کنید
1🔥1💘1
w
2💘1
Please open Telegram to view this post
VIEW IN TELEGRAM
2💘1
خلاقیت تلگرام هیچوقت کم نمیشه لعنتی هر روز خلاق تر عمل میکنن
2
This media is not supported in your browser
VIEW IN TELEGRAM
یک کد قدیمی c برای DOS
🦄21💘1
VOID
یک کد قدیمی c برای DOS
code:
#include <stdio.h>
#include <conio.h>
#include <dos.h>

long free_disk(int driver);

void main(){
int driver = 0;
long int spc;

spc = free_disk(driver);
printf("\n free space is : %ld", spc);
getch();
}

long free_disk(int driver){
union REGS in, out;
in.h.ah = 0x36;
in.h.dl = driver;
intdos(&in, &out);
return((long) out.x.ax * (long) out.x.bx * (long) out.x.cx);
}
💅21💘1
VOID
code: #include <stdio.h> #include <conio.h> #include <dos.h> long free_disk(int driver); void main(){ int driver = 0; long int spc; spc = free_disk(driver); printf("\n free space is : %ld", spc); getch(); } long free_disk(int driver){…
این کد یه کد قدیمی DOS با gcc کامپایل نمی‌شه چون توابعی مثل intdos() و union REGS فقط برای Turbo C بودن. برای اجراش باید محیط قدیمی DOS رو شبیه‌سازی کنید یا تبدیلش کنید به کد ویندوزی
🗿21💘1
For New compilers
🤣2🍓21💘1
VOID
For New compilers
code:
#include <stdio.h>
#include <Windows.h>

long long free_disk_space(const char *driver){
ULARGE_INTEGER freebytes;
if(GetDiskFreeSpaceExA(
driver,
&freebytes,
NULL,
NULL)){
return freebytes.QuadPart;
}
return -1;
}


int main(){
long long space = free_disk_space("c:\\");
if(space != -1){
printf("\n\tFree Space is : %lld bytes\n", space);
}else{
printf("\n\tError reading disk space !\n");
}


return 0;
}
🍓21💘1
VOID
free_disk_space("c:\\")
هر درایوری که میخوای چک کنی رو میتونی بزاری
🍓21💘1
1🥰1🍓1💘1💊1🙊1👾1
This media is not supported in your browser
VIEW IN TELEGRAM
#include <stdio.h>
#include <windows.h>

int main(){
for (int i = 0; i < 3;i++){
Sleep(2500);
printf("ok\n");
}
}
2💘1
Forwarded from Skulls memories (Mr. Nothing)
کلاهبرداری به اسم فروش سوالات نهایی
لطفا این خزعبلات رو باور نکنید
3👻1💘1