Advertisement
Josif_tepe

Untitled

Nov 14th, 2022
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6.     int brojac = 0;
  7.     while(brojac < 5) {
  8.         printf("%d\n", brojac);
  9.         brojac++;
  10.     }
  11.     return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement