#include <stdio.h>
void P(int *A) {
    *A += 1;
}
int main() {
    int k=0;
    while(k < 10){
        printf("Hello world %d!\n",k);
        P(&k);
    }
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: