main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}
No Answer is Posted For this Question
Be the First to Post Answer
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
What are types of functions?
Can you apply link and association interchangeably?
how to find the size of the data type like int,float without using the sizeof operator?
What is array within structure?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is a list in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Is c compiled or interpreted?
How to find the usage of memory in a c program
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?