Computer Science, asked by ashwatiunair9754, 11 months ago

What is the output of ---- #include(stdio.h) #include(conio.h)
Void main ()
{
/*my first day of school*/
print ("welcome");
getch() ;
}

Answers

Answered by Brainlyshchay
2

You'll have the following output:-

>>> #include(conio.h)

... Void main ()

 File "<stdin>", line 2

   Void main ()

           ^

SyntaxError: invalid syntax

>>> {

... /*my first day of school*/

 File "<stdin>", line 2

   /*my first day of school*/

   ^

SyntaxError: invalid syntax

>>> print ("welcome");

welcome

>>> getch() ;

Traceback (most recent call last):

 File "<stdin>", line 1, in <module>

NameError: name 'getch' is not defined

>>> }

NO SPAMMING❕❗...

NOT COPIED FROM GOOGLE !!!

Similar questions