Skip to content

Instantly share code, notes, and snippets.

@vineetchoudhary
Last active December 11, 2015 09:09
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 vineetchoudhary/73b4c1028ef4f4dbd8de to your computer and use it in GitHub Desktop.
Save vineetchoudhary/73b4c1028ef4f4dbd8de to your computer and use it in GitHub Desktop.
What is the name of the “-->” operator?
#include<stdio.h>
int main(){
int x = 10;
while (x-->0){
printf("%d",x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment