? ???Mirror Mirror on the wall????????
how to print the character with maximum occurence and print that number of occurence too in a string given ?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
What is merge sort in c?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
what is the difference between while and do while?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Can true be a variable name in c?
Are there any problems with performing mathematical operations on different variable types?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
how can we print hellow world programme without using semicolon