#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
void main()
{
char s[100],z[10];
clrscr();
cout<<"Enter your name:";
gets(s);
cout<<strupr(s[0]);
cout<<".";
getch();
}
what I am looking for is that when user input deniweb,then it should output D
please help
Thanks