Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
120
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.  
  3. int main() {
  4.     int i= 0;
  5.     char fb[5] = {"filip"};
  6.     while (i++ ) {
  7.         if(i<4) {
  8.             printf(" %c", fb[i]);
  9.         }
  10.     }
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement