Question { State Bank Of India SBI, 9590 }
who was the present cheif governor of reserve bank of india
Answer
| Is This Answer Correct ? | 0 Yes | 0 No |
Question { 5116 }
What are local and global variables?
Answer
| Is This Answer Correct ? | 1 Yes | 0 No |
Question { 11750 }
which of 'arrays' or 'pointers' are faster?
Answer
| Is This Answer Correct ? | 10 Yes | 1 No |
Question { 7470 }
void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer
| Is This Answer Correct ? | 11 Yes | 8 No |