Computer Science, asked by trishnagogoi876, 1 month ago

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 prathyushadoddi7
7

Answer:

#include<stdio.h>

int main()

{

printf("Prathyusha\nSanthi");

}

Similar questions