Skip to content

Instantly share code, notes, and snippets.

@BashCloud
Created April 17, 2017 10:29
Show Gist options
  • Save BashCloud/4e44b4cc7b94b32ac192e94853314664 to your computer and use it in GitHub Desktop.
Save BashCloud/4e44b4cc7b94b32ac192e94853314664 to your computer and use it in GitHub Desktop.
Uncommon C features
#include<stdio.h>
void main()
{
char name[]="XYZ";
printf("name=%.*s",3,name);
int i=0,j=0;
while(i=i+1,i<5)
printf("%d ",i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment