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.
4 7009write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
3 6206How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
1 7343hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
TCS,
1982I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
2 5573we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
4 7561
Can you apply link and association interchangeably?
Explain Basic concepts of C language?
How can I direct output to the printer?
Explain 'bit masking'?
write a program in c language to print your bio-data on the screen by using functions.
What is the purpose of the preprocessor directive error?
What’s the special use of UNIONS?
Tell me when is a void pointer used?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Define circular linked list.
Is c a great language, or what?
What is c token?
explain what are pointers?
What is sizeof int in c?
Not all reserved words are written in lowercase. TRUE or FALSE?