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 30577what 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 7846increment 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 10879Develop 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 12155
What is the symbol indicated the c-preprocessor?
What are the two types of functions in c?
What is an auto keyword in c?
Explain what are global variables and explain how do you declare them?
What is huge pointer in c?
What is || operator and how does it function in a program?
What are the benefits of organizational structure?
in linking some of os executables are linking name some of them
Find MAXIMUM of three distinct integers using a single C statement
What is include directive in c?
What are the features of c language?
develop algorithms to add polynomials (i) in one variable
Explain the difference between null pointer and void pointer.
What are the main characteristics of c language describe the structure of ac program?
What is the difference between far and near in c?