Is r written in c?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the sum of digits of a given number until the sum becomes a single digit
what is the difference between #include<> and #include”…”?
How can I convert a number to a string?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Explain the difference between struct and union.
What is identifiers in c with examples?
What is structure packing ?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
to convert a string without using decrement operater and string functions
Write a program to swap two numbers without using the third variable?
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.