print example
This commit is contained in:
13
c-basic/myprint.c
Normal file
13
c-basic/myprint.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
#include "myprint.h"
|
||||
|
||||
int myprint() {
|
||||
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user