print example
This commit is contained in:
parent
f202be858b
commit
c55c2c7c8b
12
c-basic/print_example.c
Normal file
12
c-basic/print_example.c
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int a = 10, b = 20;
|
||||||
|
|
||||||
|
printf("a = %d, b = %d\n", a, b);
|
||||||
|
printf("a ? = %d, b ? = %d\n", b , a);
|
||||||
|
printf("%d%d\n", a, b);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user