This commit is contained in:
2025-08-19 03:01:51 +03:00
parent 8b59e98a7b
commit e1b9f50edc
6 changed files with 242 additions and 0 deletions

15
DeitelC/Chapter7/test1.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
int main (void)
{
int x = 5;
int *ptr = &x;
int a = ++*ptr;
printf("*ptr++ %d\n", a);
printf("++ptr %d\n", ++ptr);
void *vptr = &x;
printf("void ptr %d\n", vptr);
return 0;
}