Home
Explore
Places
win7
win8
Coding
Wednesday, 3 July 2013
1
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.....
1
2013-07-03T02:23:00-07:00
cvs