Computer Science, asked by kavikamasani546, 2 months ago

Find the value of a :
#include<stdio.h>
int main()
{
int a=?, b=4;
a = a + b + b;
b = a-b;
printf("%d",b);
}
Output: 14​

Answers

Answered by prosunny8085
0

#include<stdio.h>

int main()

{

int a=10, b=4;

a = a + b + b;

b = a-b;

printf("%d",b);

}

ans-> a=10

Similar questions