GeeksforGeeks » Interview Questions
Wipro Interview Question for Software Engineer/Developer (Fresher) about CPuzzles
(2 posts)-
#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 -
5793
Reply
You must log in to post.