Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //http://pastebin.com/4JRuBf0c
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- printf("Counting\n");
- int x=0;
- int a;
- while(1){
- a = x;
- x++;
- if(x < 0){
- printf("hey %d %d \n", a, x);
- system("pause"); //break;
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement