Q. Choose correct answer..
Code:#include<stdio.h>
main()
{
/* Multi Line Comment
This line is ignored by compiler
*/
printf("Hello C..");
}
β
Correct Answer: (D)
All the above
#include<stdio.h>
main()
{
/* Multi Line Comment
This line is ignored by compiler
*/
printf("Hello C..");
}
You must be Logged in to update hint/solution