The Code given below can be used in TURBO C++ Compilers: -
#include <iostream.h>
#include <string.h>
#include <conio.h>
void main()
{
clrscr();
char a[50] = "Abhishek";
char b[50];
strcpy(b,a);
cout<<b[0];
getch();
}
//........Coded by YASH ALAPURIA
The Code given below can be used in gcc/g++ Compilers: -
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;
int main(void)
{
system("cls");
string str = "Help for coders.";
cout<<*str.begin();
return 0;
}
//........Coded by YASH ALAPURIA
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP