Initial commit
This commit is contained in:
BIN
ForNextDay/Lec3/L3 forNextDay().pdf
Normal file
BIN
ForNextDay/Lec3/L3 forNextDay().pdf
Normal file
Binary file not shown.
BIN
ForNextDay/Lec3/Lec3src.zip
Normal file
BIN
ForNextDay/Lec3/Lec3src.zip
Normal file
Binary file not shown.
BIN
ForNextDay/Lec3/Shoebottom_Isaac_fND_3.docx
Normal file
BIN
ForNextDay/Lec3/Shoebottom_Isaac_fND_3.docx
Normal file
Binary file not shown.
BIN
ForNextDay/Lec3/Shoebottom_Isaac_fND_3.pdf
Normal file
BIN
ForNextDay/Lec3/Shoebottom_Isaac_fND_3.pdf
Normal file
Binary file not shown.
25
ForNextDay/Lec3/test.c
Normal file
25
ForNextDay/Lec3/test.c
Normal 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
BIN
ForNextDay/Lec3/test.exe
Normal file
Binary file not shown.
Reference in New Issue
Block a user