What is the difference between ++a and a++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is c method?

0 Answers  


what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????

2 Answers   Apple,


#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }

7 Answers   Infosys,


The __________ attribute is used to announce variables based on definitions of columns in a table?

0 Answers  


What is a file descriptor in c?

0 Answers  






How do you declare a variable that will hold string values?

0 Answers  


what is the meaning of 'c' language

3 Answers  


how to swap 2 numbers within a single statement?

4 Answers  


How do I initialize a pointer to a function?

2 Answers  


please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }

3 Answers  


write an algorithm and c program to add two 2x2 matrics

2 Answers  


What is an example of structure?

0 Answers  


Categories