void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
7 30931what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
HCL,
6 8099increment operateor (++)and decrament(--)
#include
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
2 11010Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
TCS,
1 12264
What is volatile, register definition in C
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Suggesting that there can be 62 seconds in a minute?
What is cohesion and coupling in c?
Explain how do you sort filenames in a directory?
What is an expression?
How many levels of pointers can you have?
what is stack , heap ,code segment,and data segment
What is the size of a union variable?
Tell us bitwise shift operators?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How can I call a function with an argument list built up at run time?
What are 'near' and 'far' pointers?
What is build process in c?
In which header file is the null macro defined?