Toggle navigation
Home
India
States
Languages
Politics
Historical Monuments
Freedom Fighters
Independence Day
Scientists
Transportations
Imports and Exports
Agriculture
Army
Indian Presidents
World
Major Countries
Geographical Info
Richest Persons
Inspired Persons
Scientists
Wonders
Currency
Sports
Emblems
Tutorials
HTML
CSS
C-Language
Java
Java Script
PHP
Python
SQL
React Native
Pricing
Contests
Explore
PHP
</> PHP Tutorial
Introduction
Variables
If...Else
Switch
Loops
Arrays
Strings
Functions
200 Programmes
01 - 50
51 - 100
101 - 150
151 - 200
Practicals
ATM
Powerbill
PHP - Questions
151 - 200 Tasks
151.
Write a program to find the binomial coefficient using the formula (or) Write a program to find NcR value by using recursion. NcR=N!/(R!*(N-R)!)?
152.
Write a program to accept any number and print the sum of that number up to a single digit recursively (Lucky number)?
153.
Write a program to print the following triangle?
S
S K
S K I
S K I L
S K I L L
154.
Write a program to print the following triangle?
S K I L L
S K I L
S K I
S K
S
155.
Implement a program to calculate factorial of a number using static?
156.
Write a program to generate Fibonacci number using static?
157.
Use static storage specified to concatenate two strings?
158.
Write a program read a string and print the occurences of each character?
159.
With the help of static, which will find length of any string?
Don’t use the STRLEN ( ) function.
160.
Write a program to check whether the given string is palindrome or not?
161.
Write a program to read ‘n’ names and print the names which are occurred more than once?
162.
Write a program to read two string and find both are same or not?
163.
Write a program to read a line of text and find the number of blank spaces?
164.
Write a program to read a line of text and find the number of words?
165.
Write a program to read a line of text and find the words which are occurred more than once?
166.
Write a program to read a line of text and convert all the lowercase into uppercase?
167.
Write a program to read a line of text and convert all the uppercase into lowercase?
168.
Write a program to read a line of text and a word, delete that word wherever it has occurred.
169.
Write a program to read a line of text and a word which is to be included into the text, and read a position where the given word is to be inserted?
170.
Write a program to count the number of vowels, consonants and white spaces of a given line text?
171.
Write a program to find the length of the given string?
172.
Write a program to print the sum of digits of a given number?
173.
Write a program to find the LCM of given two numbers?
174.
Write a program to find the second biggest, second smallest and replace their positions and then print the array elements?
175.
Write a program to read the marks of 6 subjects and display the total, avg, class?
176.
Write a program to read book details and pass it as an argument to a function and print them?
177.
Write a program which does the same of strchr () function?
178.
Write a program which does the same of strrchr () function?
179.
Write a program which does the same of strspan () function?
180.
Write a program to read the student number, name, average score and print these details with appropriate grades by using functions?
181.
Write a program to store your name, age, birth date into record and print. Do this program by using functions?
182.
Write a program to read and store 5 employee records and print them in neat tabular format. Each employee record is consisting of eno, ename, bp, hra, ta, da, pf, tax?
183.
Write a program to print the following rhombus pattern?
*
* *
* * *
* * * *
* * *
* *
*
184.
Write a program to print the following rhombus pattern?
1
2 2
3 3 3
4 4 4 4
3 3 3
2 2
1
185.
Two strings are input into two locations ‘s1’ and ‘s2’ Write a program to interchange the contents of ‘s1’ and ‘s2’ without using temporary variables using strings?
186.
Write a program to find whether the word existing in given string or not?
187.
Write a program to read a paragraph and a word, delete that word wherever it has occurred?
188.
Write a program to print the reverse of the given string?
189.
Write a recursive function convert (number, base) to convert the given positive integer, to its equivalent number in another base?
190.
Write a program to read 3 numbers and print neither bigger nor smaller using functions?
191.
Write a program to find the given number is Disarium or not?
192.
Write a program to find the positional value of the given digit in a number. If the given digit is occurred in various Positions, then print all positional values ?
193.
Write a program to print the given number in words?
194.
Write a program to find a word and print its position of given string?
195.
Write a program to read a string, a substring which is to be replaced and a substring which is to be place and print the modified string?
196.
Write a program to read an array of elements and print even position elements only?
197.
Write a program to read ‘n’ names and print it in ascending order?
198.
Write a program to display frequency of characters in given string?
199.
Write a program to find the largest and smallest word in a given string?
200.
Write a program to read a line of text and find the number of characters?
<< Previous