String Program4

#include<stdio.h>

#include<conio.h>


void main()

{

char ch[97]={'g', 'u', 'j', 'a', 'r', 'a', 't'};

char pwd[97]="college";

clrscr();


// printf("Enter string: ");

// scanf("%s", ch);


printf("\n\nYou have entered String: %s", ch);

printf("\nYour password is %s", pwd);


getch();

}

No comments:

Post a Comment