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.