Posts

Showing posts from May, 2022
   C program: 1. Write a c program to print "hello world"........   Coding........ # include <stdio.h> #include<conio.h> int main ( ) {    printf ( "Hello World! " ) ;    getch ( ) ;    return 0 ; } Output: Hello World!