RyuGod
Programming Language Collector
Hello, World!
examples
100 doors
AES256_CTR
HexaViewer
SEED_OFB
primes
quick sort
simple_crypto
1
2
3
4
5
6
7
8
9
10
/*
    C언어 Hello, World! 예제
*/
#include <stdio.h>
void main(void)
{
    int x=10;
    printf("%p \n", x);
}
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W