Skip to content

Commit

Permalink
Update 2018-12-22-distill.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MusannaGalib authored Dec 2, 2023
1 parent 28a1f0e commit 54ba8d8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions _posts/2018-12-22-distill.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,47 @@ An example of displaying a tweet:
</div>
</div>

# Images
<div class="row mt-3">
<div class="col-sm mt-3 mt-md-0">
{% include figure.html path="assets/img/11.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
</div>
<div class="col-sm mt-3 mt-md-0">
{% include figure.html path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
</div>
<div class="col-sm mt-3 mt-md-0">
{% include figure.html path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
</div>
</div>


## Code
````markdown
```c++
code code code
```
````

```c++
int main(int argc, char const \*argv[])
{
string myString;

cout << "input a string: ";
getline(cin, myString);
int length = myString.length();

char charArray = new char * [length];

charArray = myString;
for(int i = 0; i < length; ++i){
cout << charArray[i] << " ";
}

return 0;
}
```
## Equations
Expand Down

0 comments on commit 54ba8d8

Please sign in to comment.