What is the output of the following C program?
#include<stdio.h >
  int main()
  {
    int x = 5 , y = 5;
    x* = x + y;
    printf(" %d\n", x);
    return  0;
  }
     
   

Posted on by