What is the output of the below given code?
#include
int main()
{
int tb = 10;
printf("%d", tb++);
return 0;
}1
10
2
11
3
Compile time error
4
Runtime error
What is the output of the below given code?
#include
int main()
{
int tb = 10;
printf("%d", tb++);
return 0;
}