What does *p++ do?


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

Post New Answer

More C Interview Questions

What is difference between far and near pointers?

0 Answers  


Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }

3 Answers   Qualcomm,


actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston

3 Answers   Ramco,


What are two dimensional arrays alternatively called as?

0 Answers  


What is c++ used for today?

0 Answers  






How can I increase the allowable number of simultaneously open files?

1 Answers   ABC,


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


How do you determine a file’s attributes?

0 Answers  


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


Is there a way to compare two structure variables?

0 Answers  


Which function in C can be used to append a string to another string?

0 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


Categories