Arrays and Strings in C

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

These flashcards cover fundamental concepts related to arrays and strings in C programming based on the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

String

An array of characters terminated by a special character '\0' (null character).

2
New cards

Null character '\0'

A special character that marks the end of a string in C.

3
New cards

char str[] = "computer";

Declares a character array 'str' and initializes it with the string 'computer'.

4
New cards

strlen() function

A function used to return the length of a string, counting the number of characters present.

5
New cards

strcat() function

A function used to concatenate two strings by appending the second string to the end of the first string.

6
New cards

strcmp() function

A function used to compare two strings in a case-sensitive manner.

7
New cards

strcpy() function

A function used to copy one string to another.

8
New cards

Accessing elements of an array

Elements are accessed using their index number, with the first element at index [0].

9
New cards

Two-dimensional array

An array that contains rows and columns, also known as a matrix.

10
New cards

%s format specifier

Used in printf to print a string.

11
New cards

clrscr() function

Clears the console screen in C programming.

12
New cards

getch() function

Reads a single character from the keyboard without echoing it to the screen.

13
New cards

gets() function

Reads a line of input from standard input into a character array.

14
New cards

Accessing a string character

Characters in a string can be accessed using an index inside square brackets.

15
New cards

Updating characters in a string

Characters can be updated by using their index in the string.

16
New cards

Character array

A data structure in C used to store a string, declared as an array of 'char' type.