write a programe returns the number of times the character
appears in the string
Answer Posted / mohanraj
if(a[i]==q)
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is it cc or c in a letter?
What is the difference between fread buffer() and fwrite buffer()?
Can we declare variables anywhere in c?
How can you call a function, given its name as a string?
What is the meaning of && in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How is a structure member accessed?
Tell us bitwise shift operators?
What is volatile, register definition in C
while initialization of array why we use a[][2] why not a[2][]...?
Differentiate between Macro and ordinary definition.
What is the purpose of main() function?
What is difference between arrays and pointers?
program for reversing a selected line word by word when multiple lines are given without using strrev