What is the total generic pointer type?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of pointers?
What is the value of h?
Can you write the function prototype, definition and mention the other requirements.
How can I recover the file name given an open stream or file descriptor?
What are lookup tables in c?
Explain the bubble sort algorithm.
When should you not use a type cast?
What is a substring in c?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
what is an array
Explain what is the difference between declaring a variable and defining a variable?