Created
July 25, 2017 18:11
-
-
Save ThePratikSah/b9dcad05152e435f4e13f55e818aa4d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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