Write a program to display a message.

/* Write a program to display a message*/

#include <stdio.h>

#include <stdlib.h>

int main()

{

    printf("Welcome to C\n");

    return 0;

}

Comments

Popular posts from this blog

Write a program to accept numerator and denominator and find the remainder without using modulus (%) operator using do..while loop.