Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * size.c
  3.  *
  4.  *  Created on: Mar 1, 2011
  5.  *      Author: Tweaks
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. int main(void)
  11. {
  12.     printf("Tipul de date int ocupa %d octeti \n", sizeof(int));
  13.     printf("Tipul long int ocupa &d octeti." , sizeof(long int));
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement