Skip to content

Instantly share code, notes, and snippets.

@echo-akash
Created June 30, 2017 15:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save echo-akash/f5e1d6c23b6eeda07f99f910689d6f1a to your computer and use it in GitHub Desktop.
Save echo-akash/f5e1d6c23b6eeda07f99f910689d6f1a to your computer and use it in GitHub Desktop.
Print a slash(/) and backslash(\) using printf() function using C Programming Language
#include<stdio.h>
int main()
{
printf("%c",92); //ASCII value of "\"
printf("/");return 0;
}
@discoveruz
Copy link

thank you bro

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment