Computer Science, asked by ravinderrana7684, 1 month ago

#include
void main( )
{
printf("Jingle Bells");
printf("\t Jingle Bells\n\tJingle all the way");

Answers

Answered by gowtham758550
1

Som of the lines are missing. I added those below

#include<stdio.h>

void main( )

{

printf("Jingle Bells");

printf("\t Jingle Bells\n\tJingle all the way");

getch();

}

Output:

Jingle Bells

Jingle Bells

Jingle all the way

Similar questions