Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Language

C

Compiler

gcc 8.2.0

Options
Warnings
C11(GNU)
no pedantic
Raw compiler options
Matrix.c

Matrix.h
Matrix.c

$ gcc prog.c -Wall -Wextra -std=gnu11 Matrix.c
aa:
 1 -1 0
 1 4 0
 0 1 -2

vv:
 1
 11
 0

x where aa * x = vv:
 3
 2
 1

vv calculated from: aa * x:
 1
 11
 0
Exit Code:
0