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

Difference between goto, long jmp() and setjmp()?

0 Answers   EXL,


If the size of int data type is two bytes, what is the range of signed int data type?

0 Answers  


main() { clrscr(); } clrscr();

6 Answers   ME, Wipro,


What are global variables?

0 Answers  


How arrays can be passed to a user defined function

0 Answers  






How do you list files in a directory?

0 Answers  


What is the relationship between pointers and data structure?

0 Answers  


write a string copy function routine?

2 Answers  


What is C language ?

0 Answers   Jekson,


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


write a program to display & create a rational number

1 Answers   HCL, TCS,


What are local static variables? How can you use them?

0 Answers  


Categories