Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void Dima(int nA);
- ///////////////////////////////////////////////////
- int main() //
- {
- __int8 nA = 128; // 4 байта = 64 ьита
- printf("size nA = %d\n", sizeof(nA));
- Dima(nA);
- return 0;
- }
- ///////////////////////////////////////////////////
- void Dima(int nB) //
- {
- printf(" Address = %d %d", &nB, 5);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement