CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #22

String Length Output

mediumStrings

What does this program print?

📄 Code

1#include <stdio.h>
2#include <string.h>
3 
4int main() {
5 printf("%d", (int)strlen("hello"));
6 return 0;
7}