What will be the output of the following code?
#include stdio.h
struct point {
int x;
int y;
};
void print(struct point p)
{
printf("%d %d\n", p.x, p.y);
}
int main() {
struct point pl = (34, 55);
struct point p2 = (76, 92);
print(p1);
print(p2);
return 0;
}

Posted on by