Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <unistd.h>
  2.  
  3. int a = getpagesize();
  4.  
  5. int main() {
  6. return a;
  7. }
  8.  
  9. 3:1: error: initializer element is not constant
  10.  
  11. int a = 4;
  12.  
  13. int a = somefunction();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement