You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
myint = 10;
|
|
mystring = "anything you want????";
|
|
mychar = 'a';
|
|
another_char = '!';
|
|
|
|
printf [ mystring ];
|
|
printf [ {int} myint ];
|
|
printf [ another_char ];
|
|
|
|
myint = "my int is not a string!";
|
|
mychar = 109;
|
|
|
|
printf [ myint ];
|
|
printf [ {int} mychar ]; |