#include <stdio.h>

char a[] = "1234";

int fun(char *b) {
    char *c = b;
    
    for(  ; *b != '\0' ; b++ ) {}

    return c - b;
}

int main() {
    printf("%d", fun( &a[0]) );
}

Embed on website

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