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)

C Other Question

Does mentioning the array name gives the base address in
all the contexts?
What is the similarity between a Structure, Union and
enumeration?