Monday, 30 January 2017

Ques : What is the output of this program ?

#include<stdio.h>
int main()
{
int a=2,b=4;
if(a||b++)
{
printf("%d",a+b);
}
}

@k

No comments:

Post a Comment