Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


char *ch = "abcde";
char c[4];
how to copy 'ch' to 'c'?

Answers were Sorted based on User's Feedback



char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?..

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

char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?..

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

char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?..

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

char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?..

Answer / supriya pandey

i think we used the string libruary function strcpy() to
copy it...

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C++ General Interview Questions

What is java and c++?

0 Answers  


What is setiosflags c++?

0 Answers  


What operator is used to access a struct through a pointer a) >> b) -> c) *

0 Answers  


Adobe Interview & Adobe Placement Paper

1 Answers   Adobe,


A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a local grocery store. The cost of producing one litre of milk is $0.38, and the profit of each carton of milk is $0.27. Write a C++ program that prompts the user to enter the total amount of milk produced in the morning. Then display the number of milk cartons needed to hold milk, the cost of producing milk, and the profit for producing milk.

2 Answers  


Can a Structure contain a Pointer to itself?

0 Answers  


Why do we use constructor?

0 Answers  


When volatile can be used?

3 Answers   Symphony,


Which should be more useful: the protected and public virtuals?

0 Answers  


Differentiate between a template class and class template?

1 Answers  


What is a .lib file in c++?

0 Answers  


What language is a dll written in?

0 Answers  


Categories