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
What are c preprocessors?
Why is it important to memset a variable, immediately after allocating memory to it ?
about c language
What are unions in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is structure in c language?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
How can I find out the size of a file, prior to reading it in?
How can I delete a file?
What does nil mean in c?
What is the use of typedef in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What are pointers really good for, anyway?
What is malloc return c?
Why we use conio h in c?