What are the advantages of the functions?
No Answer is Posted For this Question
Be the First to Post Answer
Is that possible to store 32768 in an int data type variable?
Explain why C language is procedural?
How can I recover the file name given an open stream?
What is the correct code to have following output in c using nested for loop?
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
Can we compile a program without main() function?
How do you override a defined macro?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is modifier & how many types of modifiers available in c?
What is difference between && and & in c?
write a c programme for add of two numbers with out use of arthematic operators
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????