Follow Our FB Page << CircleMedia.in >> for Daily Laughter. We Post Funny, Viral, Comedy Videos, Memes, Vines...


What will the code below print when it is executed?
  int x = 3, y = 4;

        if (x = 4)
                y = 5;
        else
                y = 2;

        printf ("x=%d, y=%d
",x,y);


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


Is c functional or procedural?

1 Answers  


What does return 1 means in c?

0 Answers  


parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..

4 Answers  


c program for searching a student details among 10 student details

0 Answers  






In a header file whether functions are declared or defined?

0 Answers   TISL,


largest Of three Number using without if condition?

0 Answers  


How to print "Hi World" without using semi colon?

6 Answers   Infosys,


Expand the following LKB BKL FFG

0 Answers  


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...

4 Answers   TCS,


What are the usage of pointer in c?

0 Answers  


Categories