how to print the character with maximum occurence and print
that number of occurence too in a string given ?
No Answer is Posted For this Question
Be the First to Post Answer
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
In a header file whether functions are declared or defined?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is 02d in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What are disadvantages of C language.
write a c program that prints all multiples of 3between 1 and 50.
What is the difference between ++a and a++?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
write a program to sort the elements in a given array in c language