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
2
int main()
{
int i = 3, *j, k;
j = &i;
printf("%d\n", i * *j* i + *j);
return 0;
}
Ans : 30
Similar questions
English,
3 months ago
English,
3 months ago
Social Sciences,
3 months ago
Social Sciences,
8 months ago
Environmental Sciences,
8 months ago
Hindi,
1 year ago
Math,
1 year ago