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
Explain what does the format %10.2 mean when included in a printf statement?
Is c functional or procedural?
What does return 1 means in c?
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..
c program for searching a student details among 10 student details
In a header file whether functions are declared or defined?
largest Of three Number using without if condition?
How to print "Hi World" without using semi colon?
Expand the following LKB BKL FFG
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What are the usage of pointer in c?