Skip to content

Commit

Permalink
fix Liquid error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Jan 14, 2024
1 parent 968ba78 commit a190dfb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion c++/c++-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -2520,14 +2520,16 @@ class my_class{
#### Q159. What will be the output of following code?
```cpp
{% raw %}
int matrix[3][3] = {{1, 2, 3},{4, 5, 6},{7, 8, 9}};
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
for(int j=0;j<3;j++){
int a = mat[i][j];
mat[i][j] = mat[j][i];
mat[j][i] = a;
}
}
{% endraw %}
```

- [ ] Traspose of matrix
Expand Down

0 comments on commit a190dfb

Please sign in to comment.