What will be the output of the following program?
int main()
When the following piece of code is executed, what happens?
b = 3;a = b++;
जब निम्नलिखित कोड को निष्पादित किया जाता है, तो क्या होता है?
Find the output of following code :
int main() { int i=-2; printf (“-i=%d”,-i); return b; }
निम्नलिखित कोड के उत्पादन का पता लगाएं:
What will be the output of the following code?
int main(){int x,y,z;x='1'-'0'; /* line-1 */y='a'-'b'; /* line-2 */z=x+y;printf("%d",z); }
निम्नलिखित कोड का आउटपुट क्या होगा?