Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <iostream>
  2. #include <bitset>
  3.  
  4. using namespace std;
  5.  
  6. bitset<5000> set[5000];
  7.  
  8. int main(){
  9. cout<<"program runs fine"<<endl;
  10. return 0;
  11. }
  12.  
  13. #include <iostream>
  14. #include <bitset>
  15.  
  16. using namespace std;
  17.  
  18.  
  19. int main(){
  20. bitset<5000> set[5000];
  21. cout<<"program runs fine"<<endl;
  22. return 0;
  23. }
  24.  
  25. int static_int;
  26.  
  27. int main() {
  28. int automatic_int;
  29. static int local_static_int; // also static storage!
  30. int * dynamic_int_ptr = new int;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement