Question: Which function returns the current pointer position within a file?
A
B
C
D
E
ftell()
B
fseek()
C
fgetc()
D
fread()
E
fscanf()
Note: Not available
void main()
{
char arr1[] = "REGALINT";
char arr2[10] = "REGALINT";
printf("%d,",sizeof(arr1));
printf("%d",sizeof(arr2));
}#include <assert.h>
main()
{
int n = 5;
assert(n > 3); //statement 1
n = n+2;
assert(n > 7);//statement 2
return 0;
}int array[][3] = { {1,2}, {2,3}, {3,4,2} };int i = 4, *j, *k;Which one of the following statements will result in Compilation error?