1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Anettt [7]
2 years ago
11

Overview In C, a string is simply an array of characters. We have used literal strings all along – the stuff in between the quot

es in a printf is a literal string. A literal string can be stored in a character array for later use, just as you would store the value 12 in an int variable. The string library string.h provides several functions for manipulation strings. In this week’s lab, you will see static and dynamic ways of storing strings, and write your own versions of the string library function strcpy(), which copies one string into another.
Engineering
1 answer:
salantis [7]2 years ago
3 0

#include<stdio.h>

#include<string.h>

 

int main() {

  char str1[100];

  char str2[100];

 

  printf("\nEnter the String 1 : ");

  gets(str1);

 

  strcpy(str2, str1);

  printf("\nCopied String : %s", str2);

 

  return (0);

}

You might be interested in
A semicircular or circular torch movement should be used when
lesya692 [45]

Answer:

True

Explanation:

A semicircular or circular torch movement should be used when depositing weld beads.

8 0
2 years ago
A constant-head permeability test gives the following information: - Water flows horizontally through the soil sample. - The hei
Marysya12 [62]

Answer:

Complete answer to the question is explained in the attached files.please have a look on it.

Explanation:

5 0
3 years ago
What unit of measurment would be used to measure current?
Alex_Xolod [135]

Answer:

The S. I unit of current is Amphere

5 0
3 years ago
What is the braks mean effictive pressure?
OverLord2011 [107]

Engine cylinder pressure

<u>Explanation:</u>

  1. Brake mean effective pressure is a method to calculate  the engine cylinder pressure which  would give the measured brake horsepower. Brake mean effective pressure is used to identify engine efficiency regardless of capacity or engine speed.
  2. It is used to identify engine efficiency.It is measured by means of transducers or pressure gauges.
  3. It is the measure of engine capacity to do work.

7 0
3 years ago
Please help me do this with my exam tomorrow.
blagie [28]

Answer:

ddddddddddddddddddddddddddddd

Explanation:

cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc

6 0
2 years ago
Other questions:
  • How did Atlantis benefit from lessons learned in construction of earlier orbiters?
    9·1 answer
  • The jib crane is supported by a pin at Cand rod AB. The rod can withstand a maximum tension of 40 kN. If the load has a mass of
    11·1 answer
  • A small pad subjected to a shearing force is deformed at the top of the pad 0.08 in. The height of the pad is 1.38 in. What is t
    11·1 answer
  • In a typical transmission line, the current I is very small and the voltage V is very large. A unit length of the line has resis
    8·1 answer
  • 53. The plan of a building is in the form of a rectangle with
    13·1 answer
  • (100 POINTS) {BRIANLIEST} PLEASE HELP ME
    5·1 answer
  • 1. ¿Cómo esta simbolizada la Cena en el Antiguo testamento?
    11·1 answer
  • What is the definition of insert view and why do we use it
    10·1 answer
  • Can you help me with this task/homework.
    11·1 answer
  • A fully charged new battery will have a low conductance reading.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!