mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
7 lines
97 B
C
7 lines
97 B
C
|
#include <string.h>
|
||
|
|
||
|
int main(void) {
|
||
|
char str[] = "Hello Wally!";
|
||
|
return strlen(str);
|
||
|
}
|