int i=10;
printf("%d %d %d", i, i=20, i);
No Answer is Posted For this Question
Be the First to Post Answer
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Write a C program to convert an integer into a binary string?
Is javascript written in c?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What does typedef struct mean?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
Explain what is the most efficient way to store flag values?
What are the c keywords?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
How many loops are there in c?
can we declare a function in side the structure?