Answers for "how to print something in two different lines in c"

1

how to print something in two different lines in c

#include <stdio.h>
#include <stdlib.h>

int main()
{
    printf("Hello World!/n");
    pritnf("Hello World!")
    return 0;
}
Posted by: Guest on February-20-2021

Code answers related to "how to print something in two different lines in c"

Browse Popular Code Answers by Language