Does * p ++ increment p or what it points to?


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

Post New Answer

More C Interview Questions

What is property type c?

0 Answers  


How many types of errors are there in c language? Explain

0 Answers  


What does %c do in c?

0 Answers  


Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.

2 Answers   Infosys,


player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion

1 Answers  






what is the code for getting the output as * ** ***

5 Answers   Caritor,


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

0 Answers  


Explain what is output redirection?

0 Answers  


how do we remove the printed character in printf statement and write next it it

1 Answers  


What is Memory leakage ?

2 Answers   HCL,


When is a “switch” statement preferable over an “if” statement?

0 Answers  


write a program in c language for the multiplication of two matrices using pointers?

8 Answers   Ignou,


Categories