Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 25, 2017 18:11
Show Gist options
  • Save ThePratikSah/b9dcad05152e435f4e13f55e818aa4d4 to your computer and use it in GitHub Desktop.
Save ThePratikSah/b9dcad05152e435f4e13f55e818aa4d4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
char name[] = "PRATIK";
int i = 0;
while(name[i] != '\0'){
printf("%c", name[i]);
i++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment