What is the output

main()
{
printf(4+”learning”);
}
Tutorial answer:
ling
Debugging solution:
if we give the code like that then it will display character
Form the 4th character, these string is store in array so the 4th character represent into 5th (because array starting from 0th element)character

Post a Comment

0 Comments