← Back to Question List
C Quiz #22
String Length Output
What does this program print?
📄 Code
1#include <stdio.h>2#include <string.h>34int main() {5 printf("%d", (int)strlen("hello"));6 return 0;7}