Guest User

Untitled

a guest
Jun 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. const char *string = " A string that starts with a space.";
  5. int i=0;
  6.  
  7. while (string[i] == ' ') {printf("You need to enter in a message with quotes!\n"); i++;}
  8. return 0;
Add Comment
Please, Sign In to add comment