mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-28 17:43:09 -04:00
6 lines
97 B
C
6 lines
97 B
C
#include <string.h>
|
|
|
|
int main(void) {
|
|
char str[] = "Hello Wally!";
|
|
return strlen(str);
|
|
}
|