#include <stdio.h> int main() { int k = 10; int *l = &k; loop: printf("%d\n",*l); *l+=-1; if (k > 0) {goto loop;} return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: