Skip to content
Snippets Groups Projects
Commit 2f004d56 authored by anttib-5's avatar anttib-5
Browse files

bare3_1

parent 35a020de
No related branches found
No related tags found
No related merge requests found
......@@ -52,27 +52,36 @@ fn main() -> ! {
//
// 1. What is the output in the `openocd` (Adapter Output) console?
//
// ** your answer here **
// bare3
// s = ABCD
// bs = [65, 66, 67, 68]
// iterate over slice
// 65,66,67,68,iterate iterate using (raw) indexing
// 65,
// 66,
// 67,
// 68,
// a = AAAA
//
// What is the type of `s`?
//
// ** your answer here **
// string
//
// What is the type of `bs`?
//
// ** your answer here **
// u8 array
//
// What is the type of `c`?
//
// ** your answer here **
// it is a pointer to a u8 element in an array
//
// What is the type of `a`?
//
// ** your answer here **
// u8 array
//
// What is the type of `i`?
//
// ** your answer here **
// i32
//
// Commit your answers (bare3_1)
//
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment