char *ch = "abcde";
char c[4];
how to copy 'ch' to 'c'?
Answers were Sorted based on User's Feedback
Answer / parth ujenia
main()
{
char *ch="abcd";
char c[4];
for(int i=0;i<4;i++)
{
c[i]=*ch; //assign value to char c[i].
*ch++; //switch to next address of ch!
}
for(i=0; i<4 ;i++)
{
printf("%c - ",c[i]); //output will: a - b - c - d -
}
getch();
}
Is This Answer Correct ? | 18 Yes | 7 No |
Answer / gopi
main()
{
char *ch="abcd";
char c[4];
for(int i=0;i<4;i++)
{
c[i]=*ch;
ch++;
}
printf("%s",c);
getch();
}
Is This Answer Correct ? | 12 Yes | 2 No |
Answer / wade stone
#include <stdio.h>
#include <string.h>
using namespace std;
int main( )
{
char *ch = "abcde";
char c[4];
memcpy( c, ch, sizeof( c ) );
return 0;
}
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / supriya pandey
i think we used the string libruary function strcpy() to
copy it...
Is This Answer Correct ? | 1 Yes | 4 No |
Why do we use templates?
What are files in c++?
What do you mean by function and operator overloading in c++?
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
What is called array?
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
What are the uses of pointers?
Is there anything you can do in C++ that you cannot do in C?
Will the following program execute?
why we cant create array of refrences
What is Destructor in C++?
differance between copy & clon