Skip to main content
JustPaste
HomeAboutDonateContactTerms of UsePrivacy Policy

© 2026 Just Paste. All rights reserved.

Made with ❤️ by TakiDev

Untitled Page | JustPaste.app
Publish 3 months ago75 views

#include <stdio.h>

#include <stdlib.h>

#include <time.h> // για την (time(NULL))

int main ()

{ system ("chcp 1253 > nul");

int die;

srand(time(NULL)); //srand(time(0))

die = 1 + rand()%6;

printf("Το ζάρι έφερε %d.\n", die);

system("PAUSE");

return 0;

}