Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

QUES) a) Consider the two variables below. char amessage[] = now is the time; char *pmessage = now is the time; I. What is the

QUES)

a)

Consider the two variables below.

char amessage[] = "now is the time";

char *pmessage = "now is the time";

I. What is the difference between the two variables amessage and pmessage?

II. Write a C code to change the character t from time to uppercase T in the variable

amessage.

b)

Consider the following code.

void strcopy(char s1[ ], char s2[ ])

{

int len = strlen(s2);

for (int i = 0; i<=len; i++) {

s1[i] = s2[i];

}

}

int main () {

char s2[10] = "copy this";

char s1[10];

strcopy(s1, s2);

}

The above code copies the character from s2 to s1 using the concept of array, in the strcopy function.

Implement another function strcopy2 that achieves the same result, but that takes as input pointers

to character arrays that is, complete the strcopy2 function in the following code so that the code

copies the content of s2 into s1.

void strcopy2(char *s1, char *s2) {

}

int main () {

char s2[10] = "copy this";

char s1[10];

strcopy2(s1, s2);

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Second East European Symposium Adbis 98 Poznan Poland September 1998 Proceedings Lncs 1475

Authors: Witold Litwin ,Tadeusz Morzy ,Gottfried Vossen

1st Edition

3540649247, 978-3540649243

More Books

Students also viewed these Databases questions

Question

1-4 How will MIS help my career?

Answered: 1 week ago