If You are beginner level programmer this will help you a lot...
-
Binary and Decimal Conversion
-
Check palindrome using test case and print yes or no.
-
Check perfect number or not.
-
Count number of vowels in the given string.
-
Display the count of odd numbers up to given range n.
-
Display the count of prime numbers upto given range.
-
Display the counts of Polyndrome numbers from 10 to 100000.
-
Display the digits in increasing order from 1000 to 9999.
-
Display the odd numbers up to given range n.
-
Reverse a given number.
-
Separate unit digit in given number.
-
Seperate ten's digit from in given number.
-
Sum of digits in a given number.
-
Sum of odd number up to given range n.
-
Sum of prime numbers ranges up to n.
-
Temperature Conversion using function.
-
Finding Average
-
Write a program to get a user 'input as Integer variable' using scanf. Convert the 'integer into character string and print the same as string' using printf
-
Write a program to get a user 'input as string' using scanf. Convert the 'string into integer and print the same as integer' using printf
-
Write a program to get a number up to 50 digits from user. check whether the number is a valid number. Valid number contains digits 0 -9.
-
Write a program to get a number from user up to 50 digit. print the reverse of the number using printf ("%s", ...) function. Before reversing the number check whether the number is a valid number.
-
Write a Program to get a 'string from the user', and 'a word' from the user. Remove the word from string and print the string. Write the program using functions.
-
List of Questions
-
Write a program to find out the total number of prime numbers below 1,000,000 have the sum of their digits equal to 14?
Answer : 1218 -
Write a program to find out the total number of prime numbers below 10,000,000 have the sum of their digits equal to 14?
Answer: 3547 -
Write a program to find out the total number of prime numbers below 100,000,000 have the sum of their digits equal to 14?
Answer: 9268
-
-
Write a program to Print the number of zeroes you encounter between the numbers 0 to 1000.
-
Write a C program to count number of vowels in the given string.
-
Write a C program to reverse every word from given string using function.