Arrays, Vectors, and Strings in C: A Complete Guide with Examples
0 keer verkocht
Vak
COMPUTER SCIENCE
Instelling
Harvard University
This document offers a comprehensive guide to arrays, vectors, and strings in C programming, covering their declaration, initialization, and manipulation. It explains how to work with one-dimensional and multidimensional arrays, implement vector-like functionality using dynamic memory allocation, a...
Arrays, Vectors and Strings in C
In C, arrays, vectors, and strings are used to store multiple values. Understanding
how to use them is crucial for managing large amounts of data and handling
dynamic memory.
1. Arrays in C
An array is a collection of variables of the same type that are stored in contiguous
memory locations. It allows you to store multiple values in a single variable.
1.1. Declaring and Initializing Arrays
To declare an array in C, specify the data type, the array name, and the size of the
array. For example:
#include <stdio.h>
int main() {
int numbers[5]; // Declaring an array of 5 integers
// Accessing array elements
for (int i = 0; i < 5; i++) {
printf("Element %d: %d\n", i, numbers[i]);
}
return 0;
}
, 1.2. Array Initialization
You can initialize an array at the time of declaration:
#include <stdio.h>
int main() {
int numbers[] = {10, 20, 30, 40, 50}; // Size is automatically determined
// Accessing array elements
for (int i = 0; i < 5; i++) {
printf("Element %d: %d\n", i, numbers[i]);
}
return 0;
}
1.3. Multi-Dimensional Arrays
C supports multidimensional arrays, where each element is itself an array. A
common use case is a matrix.
#include <stdio.h>
int main() {
int matrix[2][3] = {{1, 2, 3}, {4, 5, 6}}; // 2x3 matrix
// Accessing elements of a 2D array
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 3; j++) {
printf("Element at [%d][%d]: %d\n", i, j, matrix[i][j]);
}
}
return 0;
}
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper rileyclover179. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €8,30. Je zit daarna nergens aan vast.