C language mini

1 min read
#include <stdio.h>
int main()
{
int a= 5;
printf("%d %d %d",a,a++,++a);
return 0;
}
10
Subscribe to my newsletter
Read articles from Rishab Dixit directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
