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
write a c program to store and print name,address,roll.no of a student using structures?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain #pragma in C.
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
code for reverse alternate words from astring
How pointer is different from array?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Can we assign integer value to char in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17