include <stdio.h>
int main()
int x = 1, y = 0;
printf(and\n");
Answers
Answered by
0
Answer:
There is an error in your question; in the printf statement there is only one double quotation mark, but there should be two. The code should be like -
include <stdio.h>
int main()
int x = 1, y = 0;
printf("and\n");
Similar questions