#include <stdio.h> #include <string.h> int main() { char str[] = "Hello, World!"; printf("Length of the string: %lu\n", strlen(str)); // Outputs: 13 return 0; }