Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and.....
Saturday, March 8, 2014
Monday, September 2, 2013
WAP to find out if a given number is a power series of 2 or not,withou t any loop and without using % modulo operator.
Questions: Top-30-c-programs-asked-in-interview_6304.html 30. WAP to find out if a given number is a power series of 2 or not,withou t any loop and without.....
Code for duplicate s removal
Questions: Top-30-c-programs-asked-in-interview_6304.html 29. Code for duplicate' s removal,by Amit Aru. #include #include void main() { int i,j,k=0,co unt[300]={ 0}; char ch,str[100 0],str1[10 00]; clrscr();.....
Count the Total Number of 7 comming between 1 to 100.
Questions: Top-30-c-programs-asked-in-interview_6304.html 28.Count the Total Number of 7 comming between 1 to 100. /* I made this code in a way that u can.....
WAP to print xay in place of every'a'in a string.
Questions: Top-30-c-programs-asked-in-interview_6304.html 27.WAP to print'xay'in place of every'a'in a string. #include #include void main() { int i=0; char str[100],x ='x',y='y' ; printf("En ter the.....
WAP to print the triangle of letters in increasing order of lines.
Questions: Top-30-c-programs-asked-in-interview_6304.html 26.WAP to print the triangle of letters in increasing order of lines. #include #include void main() { int i,j,k; char ch; printf("\n.....
Programm of India Map
Questions: Top-30-c-programs-asked-in-interview_6304.html 25.Prog of India MAP. main() { int a,b,c; int count = 1; for (b = c = 10; a = "- FIGURE?,.....
WAP to find out the longest word in a string.
Questions: Top-30-c-programs-asked-in-interview_6304.html 24. WAP to find out the longest word in a string. #include #include #include void main() { int i,max=0,co unt=0,j; char str[100];.....
WAP to print DONE,witho ut using any loop and any conditonal clause or operators.
Questions: Top-30-c-programs-asked-in-interview_6304.html 22.WAP to print DONE 100 times,without using any loop. // asked to my frnd in any company. main() { static int i=1;.....