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 30901what 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 8087increment 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 11000Develop 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 12254
what are the facialities provided by you after the selection of the student.
What is type qualifiers?
write a program to concatenation the string using switch case?
What is extern storage class in c?
List the difference between a "copy constructor" and a "assignment operator"?
Do character constants represent numerical values?
In which layer of the network datastructure format change is done
difference between Low, Middle, High Level languages in c ?
Which header file is used for clrscr?
Can you write a programmer for FACTORIAL using recursion?
What is the right way to use errno?
Tell me when would you use a pointer to a function?
i have a written test for microland please give me test pattern
What are the ways to a null pointer can use in c programming language?
Here is a good puzzle: how do you write a program which produces its own source code as output?