Write A C Program To Display “ABCD” On One Line And “XYZ” On Other Line

 

 Write A C Program To Display “ABCD” On One Line And “XYZ” On Other Line

/* Author --> HARSH PATEL */
#include<stdio.h>
int main()
{

    printf("ABCD,\nXYZ");
    return 0;

}




output

ABCD, 
XYZ

 
•now the program ends without any error.


Popular posts from this blog

C Program To Print Hello World

Declare And Initialize Two Character Constants And Output It To User

C Program To Calculate Profit Or Loss