Computer Science, asked by keerat07, 9 months ago

what is the result of the following statement ?
printf (\ Hello");
printf ("My name is Viney ") ; ​

Answers

Answered by Anonymous
0

Answer:

in line one " is missing inside printf statement, so throws an error

Answered by Thinkab13
0

Answer:

printf("Hello");

printf ("My name is Viney ");

Output -

Hello

My name is Viney

Similar questions