Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- int foo();
- int (*nFoo)() = foo;
- ////////////////////////////////////////////
- int main() //
- {
- printf("%d\n", foo);
- printf("%d\n", nFoo);
- }
- ////////////////////////////////////////////
- int foo() //
- {
- return 12;
- }
- /*
- #include <stdio.h>
- #include <string.h>
- char sz[5] = "SONY";
- int nArr[12];
- ////////////////////////////////////////////
- int main() //
- {
- memcpy(nArr, sz, 5);
- printf("%X\n", nArr[0]);
- }
- */
- /*
- #include <stdio.h>
- #define push(sp, n) *sp++ = n
- #define pop(sp) *--sp
- int stack[1024], // Выделяем 4KB ( 4096 байт памяти или 4 * 1024 ) для нашего стека
- *sp = stack, // Указатель на вершину стека
- x, // Просто переменная
- i; // Счётчик для циклов
- ////////////////////////////////////////////
- int main() //
- {
- for(i = 5; i < 25; i ++) push(sp, i);
- for(i = 0; i < 20; i ++)
- {
- x = pop(sp);
- printf("x = %d \n", x);
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement