KodeGod.com

006. Technical interview question: Give the output of the following code

#include<string.h>
void main()
{
  clrscr();
  printf("%d%d",sizeof("kodegod"),strlen("kodegod"));
  getch();
}