10 lines
125 B
Plaintext
10 lines
125 B
Plaintext
|
int a; int b; int c;
|
||
|
|
||
|
int :: main()
|
||
|
{
|
||
|
char z; int y; int x;
|
||
|
x= 10; y= 20; z= 30;
|
||
|
a= 5; b= 15; c= 25;
|
||
|
|
||
|
return(0);
|
||
|
}
|