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 30936what 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 8105increment 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 11011Develop 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 12265
Why should I use standard library functions instead of writing my own?
What language is lisp written in?
Does c have an equivalent to pascals with statement?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Is Exception handling possible in c language?
What is null in c?
What is structure and union in c?
What is ## preprocessor operator in c?
Explain how can type-insensitive macros be created?
What is main return c?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is structure padding and packing in c?
What is pass by value in c?
What are enums in c?