which of the following is the correct output for the program given below?
#include<stdio.h>
void main()
{
printf(5+"fascimile\n");
}
Answers
Answered by
1
Answer:
mile
Explanation:
In printf(5+"fascimile\n") the 5+ means the first 5 characters of the string (fasci) will be omitted and other characters will be printed.
Hope this helps!
Similar questions