नीचे दिए गए कूट का आउटपुट क्या है?
#include
int main()
{
int tb = 10;
printf("%d", tb++);
return 0;
}1
10
2
11
3
कम्पाइल टाइम त्रुटि
4
रनटाइम त्रुटि
नीचे दिए गए कूट का आउटपुट क्या है?
#include
int main()
{
int tb = 10;
printf("%d", tb++);
return 0;
}