Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Simple reading and writing using C

#include <stdio.h>
int main()
{
   char m[6];
   char x[6];
    scanf("%s %s",&m,&x);
    printf("Hi, My name is E.umamaheswar %s %s\n",m,x);
    printf("Nice to see you \n\t\t Let me do my best \n\t\t\t Thankyou  ");
    
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.