TCS Company Programming

Are the expressions arr and &arr same for an array of 10 integers?
A.Yes
B.No

Read Solution (Total 5)

TCS Other Question

Is there any difference int the following declarations?
int fun(int arr[]);int fun(int arr[2]);
A.Yes
B.No
Which of the fplowing statements should be used to obtain a remainder after
dividing 3.14 by 2.1?
1.rem = 3.14 % 2.1;
2.rem = modf(3.14, 2.1);
3.rem = fmod(3.14, 2.1);
4.Remainder cannot be obtain in floating point division.