C
Programming and Technical
Programming
Program
What will be the output of the program ?
#include
#include
int main()
{
printf("%dn", strlen("123456"));
return 0;
}
Options
1) 6
2) 12
3) 7
4) 2
Read Solution (Total 2)
-
- 6 is the length of string
- 9 years agoHelpfull: Yes(1) No(0)
- 6 is the length
- 8 years agoHelpfull: Yes(0) No(0)
C Other Question