GeeksforGeeks » Interview Questions

Wipro Interview Question for Software Engineer/Developer (Fresher) about CPuzzles

(2 posts)

Tags:

  1. ganesh
    guest
    Posted 1 year ago #

    #include<stdio.h>
    int main()
    {
       int x=20, y=35;
       x = y++ +x++;
       y = ++y+ ++x;
       printf(“%d%d\n”,x,y);
       getchar();
       return 0;
    }
    

    A.5794
    B.5593
    C.5793
    D.5694

  2. natasha
    guest
    Posted 1 year ago #

    5793


Reply

You must log in to post.

RSS feed for this topic