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 30646what 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 7913increment 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 10903Develop 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 12168
Why is structure padding done in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Is there a way to jump out of a function or functions?
Array is an lvalue or not?
can we have joblib in a proc ?
How do you view the path?
Sir i need notes for structure,functions,pointers in c language can you help me please
How can I ensure that integer arithmetic doesnt overflow?
What is data structure in c and its types?
Explain what is the concatenation operator?
Is using exit() the same as using return?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is use of bit field?
Is file a keyword in c?
How is a pointer variable declared?