Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 25, 2017 18:07
Show Gist options
  • Select an option

  • Save ThePratikSah/cb5feaa4e7b8155c6fc239eee9026a33 to your computer and use it in GitHub Desktop.

Select an option

Save ThePratikSah/cb5feaa4e7b8155c6fc239eee9026a33 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
char name[20] = "PRATIK";
int i;
for(i = 0; i < 7; i++){
printf("%c", name[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment