Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • theo.putegnat/infosec-ecomp
  • damien.armillon/infosec-ecomp
  • mouhamed.sougou/infosec-ecomp
  • cidre-public/compilation/infosec-ecomp
4 results
Show changes
Showing
with 243 additions and 0 deletions
{"output": "", "error": null, "retval": 0}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(n)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(n)
SYM_GT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(n)
SYM_ASSIGN
SYM_IDENTIFIER(n)
SYM_MINUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(n)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(int n){
n = n * 2;
return n;
}
{"output": "", "error": null, "retval": 28}
\ No newline at end of file
{"output": "", "error": null, "retval": 2}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(n)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(n)
SYM_ASSIGN
SYM_IDENTIFIER(n)
SYM_ASTERISK
SYM_INTEGER(2)
SYM_SEMICOLON
SYM_RETURN
SYM_IDENTIFIER(n)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(int n){
if(n < 0) { n = 0; }
else { }
int res = 1;
while(n > 0){
res = n * res;
n = n - 1;
}
return res;
}
{"output": "", "error": null, "retval": 87178291200}
\ No newline at end of file
{"output": "", "error": null, "retval": 1}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(n)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IF
SYM_LPARENTHESIS
SYM_IDENTIFIER(n)
SYM_LT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(n)
SYM_ASSIGN
SYM_INTEGER(0)
SYM_SEMICOLON
SYM_RBRACE
SYM_ELSE
SYM_LBRACE
SYM_RBRACE
SYM_INT
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(n)
SYM_GT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_IDENTIFIER(n)
SYM_ASTERISK
SYM_IDENTIFIER(res)
SYM_SEMICOLON
SYM_IDENTIFIER(n)
SYM_ASSIGN
SYM_IDENTIFIER(n)
SYM_MINUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(res)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(int n){
int i = 0; // t6
int j = 1; // t5
int k = 0; // t4
while(k < n){
int tmp = i + j;
i = j;
j = tmp;
k = k + 1;
}
return i;
}
{"output": "", "error": null, "retval": 377}
\ No newline at end of file
{"output": "", "error": null, "retval": 1}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(n)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(0)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(j)
SYM_ASSIGN
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(k)
SYM_ASSIGN
SYM_INTEGER(0)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(k)
SYM_LT
SYM_IDENTIFIER(n)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(tmp)
SYM_ASSIGN
SYM_IDENTIFIER(i)
SYM_PLUS
SYM_IDENTIFIER(j)
SYM_SEMICOLON
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_IDENTIFIER(j)
SYM_SEMICOLON
SYM_IDENTIFIER(j)
SYM_ASSIGN
SYM_IDENTIFIER(tmp)
SYM_SEMICOLON
SYM_IDENTIFIER(k)
SYM_ASSIGN
SYM_IDENTIFIER(k)
SYM_PLUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(i)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(int a, int b){
int t;
while(b != 0){
t = b;
b = a % b;
a = t;
}
return a;
}
{"output": "", "error": null, "retval": 2}
\ No newline at end of file
{"output": "", "error": null, "retval": 1}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(a)
SYM_COMMA
SYM_INT
SYM_IDENTIFIER(b)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(t)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(b)
SYM_NOTEQ
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(t)
SYM_ASSIGN
SYM_IDENTIFIER(b)
SYM_SEMICOLON
SYM_IDENTIFIER(b)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_MOD
SYM_IDENTIFIER(b)
SYM_SEMICOLON
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_IDENTIFIER(t)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(a)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(){
int just_a_variable = 37;
return just_a_variable;
}
{"output": "", "error": null, "retval": 37}
\ No newline at end of file