write the function int countchtr(char string[],int
ch);which returns the number of timesthe character ch
appears in the string. for example the call countchtr("she
lives in Newyork",'e') would return 3.
Answer Posted / vadivelt
Hi all,
In my post, Answer #5 pls change the statement in if
condition from "ch <= 96" to "ch <= 90"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of linkage in c language?
What is a newline escape sequence?
What is selection sort in c?
What is getch c?
How can I list all of the predefined identifiers?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain what is dynamic data structure?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is non linear data structure in c?
Is boolean a datatype in c?
What is null in c?
Do character constants represent numerical values?
What is a function simple definition?