A
Q. What will be output of the following c code?
Code:
#include “string.h”
void main(){
clrscr();
printf(“%d %d”,sizeof(“string”),strlen(“string”));
getch();
}
void main(){
clrscr();
printf(“%d %d”,sizeof(“string”),strlen(“string”));
getch();
}
- Correct Answer - Option(C)
- Views: 4
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.