- Get link
- X
- Other Apps
int main()
{
int j=0;
j=j+printf("");
printf("%d",j);5
j=j+printf("hello");
printf("%d",j);
return 0;
}
Find the output....
Solution: 0hello5- coz j 'll return the number of characters in dat word.....
- Get link
- X
- Other Apps
Comments
Post a Comment