Math, asked by afiasayed237, 5 months ago

plz ans this with step by step processs​

Attachments:

Answers

Answered by nehachaurasia2008
0

Answer:

now you will able to do this.

Step-by-step explanation:

Question - 1. #include <stdio.h> int main() { int x; x = 10; if(x > 10) x -= 10; else if(x >= 0) x += 00; else if(x) x += 10; else x -= 10; printf("%d\n",x); return 0; } ...

Question - 4. #include <stdio.h> int main() { int a=10,b=20,*p,s=0; p = &a; a++; (*p)++; s = a + b + *p; printf("%d\n",s); return 0; } ...

Similar questions