C in Use Question Paper - Set1
C in Use Question Paper - Set1
Reg No:
Branch:
Subject: C in Use
[10*1=10]
10)
void main()
{
int a=2,b=3;
(a==b)? printf( both are equal):printf(not equal);
}
11)void main()
{
int a=4,b;
b= a++ + a-- + --a + --a;
(a==b)? printf( both are equal):printf(not equal);
}
SECTION B
12)
13)
14)
15)
16)
17)
[5*2=10]