# include<studio.h>
#include<string.h>
void main()
{
printed("%d %d",sizeof("strlen"),strlen("sizeof"));
}
Answers
Answered by
0
Answer:
# include<studio.h>
#include<string.h>
void main() {
printf ("%d %d",sizeof("strlen"),strlen("sizeof"));
}
Explanation:
In this you have missed printf so command is not working.
Similar questions