Write and execute a c program to print your name and your mother's name in two different line but using a single printf.
Answers
Answered by
7
Answer:
#include<stdio.h>
int main()
{
printf("Prathyusha\nSanthi");
}
Similar questions