print example

This commit is contained in:
2025-08-19 19:39:53 +03:00
parent 59bf2ec15f
commit 8585123ed1
3 changed files with 22 additions and 2 deletions

13
c-basic/myprint.c Normal file
View 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;
}