This question is little bit weird.
Just out of curiosity, is it possible to use the literals without variable assignment in C ?
Generally, we do like as follows,
#include<stdio.h>
int main()
{
// Here we are using the literal '7' and assigning it to variable 'a' which will hold it in some address space
int a = 7;
printf("Hello : %d\n",a);
return 0;
}
So, is it possible to use the literals without variables ?
Thanks in advance.