// test-variable-assign.c int main(int argc, int argv) { int x = 5; x = 10; return x; }