Computer Science, asked by lena7111999, 10 days ago

Find the result
#include<stdio.h>
int main
{
int x, m=-10, n=15, p=4, r=2;
x = m++ ---n*!r/p;
printf("%d",x);
return 0;
}​

Answers

Answered by gayatrisingh9453
0

Explanation:

#include <stdio.h>

void main()

{

printf("value is = %d",(10++));

}

Similar questions