Difference between revisions of "Assembly Language IF"
(Created page with "==C#== <syntaxhighlight lang=csharp> int a = 0; do { a++ } while ( A != 99); </syntaxhighlight>") |
(No difference)
|
Revision as of 10:34, 16 June 2017
C#
int a = 0;
do
{
a++
}
while ( A != 99);