Computer Science, asked by sushma5653, 10 months ago

Write a c program to check whether it is operator presidence or not

Answers

Answered by Anonymous
2

Answer:

#include <stdio.h>

int x = 0;

int f1()

{

x = 5;

return x;

}

int f2()

{

x = 10;

return x;

}

int main()

{

int p = f1() + f2();

printf("%d ", x);

return 0;

}

Similar questions