EXPLORING ‘C’
void main()
{
int a=2,b=3;
printf(“%d%d”);
}
output:
32
printf with no variables to print, prints the recently initialised variables
void main()
{
int a=2,b=3;
printf(“%d%d”);
}
output:
32
printf with no variables to print, prints the recently initialised variables
feedback