Initial commit: C language learning code
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int a, b, c;
|
||||
a = b = c = 0;
|
||||
a++ &&b++ | c++;
|
||||
printf("%d,%d,%d\n",a,b,c);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user