The output of the following program is:
#include
int main()
{
int count=0,count1=30;
int i,j,*ptr,*ptr1;
ptr=&count;
ptr1=&count1;
for(i=0;i<5;i++)
{
for(j=0;j<5;j++)
{
(*ptr)++;
(*ptr1)--;
}
}
printf("%d",(*ptr)+(*ptr1));
return 0;
}
Enter numerical value using the virtual keypad. Round off where necessary.