Computer Science, asked by kalapillaiyar, 5 months ago

1.
What is the output of the following code?
int main()
{
int i = 3, *j, k;
j = &i;
printf("%d\n", i * *j* i + *j);
return 0;
}​

Answers

Answered by riditkumar919
2

int main()

{

int i = 3, *j, k;

j = &i;

printf("%d\n", i * *j* i + *j);

return 0;

}

Ans : 30

Similar questions