Initial commit

This commit is contained in:
2023-05-22 23:28:51 -03:00
commit 5c1403aa91
467 changed files with 18649 additions and 0 deletions

Binary file not shown.

BIN
ForNextDay/Lec3/Lec3src.zip Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

25
ForNextDay/Lec3/test.c Normal file
View File

@ -0,0 +1,25 @@
#include <stdio.h>
int main()
{
char i;
//char dsadas;
//int i;
//char j;
//char sum;
//char iErr;
int j;
double sum;
int iErr[4];
/* Report location of variables on the stack */
printf("Stack memory for main() ------------\n");
printf("i: %p \n", &i);
printf("sizeOf: %d\n", sizeof(i));
printf("j: %p \n", &j);
printf("sizeOf: %d\n", sizeof(j));
printf("sum: %p \n", &sum);
printf("sizeOf: %d\n", sizeof(sum));
printf("iErr: %p \n", &iErr);
printf("sizeOf: %d\n", sizeof(iErr));
printf("------------------------------------\n");
}

BIN
ForNextDay/Lec3/test.exe Normal file

Binary file not shown.