Skip to content

Latest commit

 

History

220 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My-100-days-C-coding-Challenge

Started with my 100 days of coding challenge with C Programming language.

Programs

  1. Write a program to identify if the character is a vowel or consonant. (code)
  2. Write a program to identify if the character is an alphabet or not. (code)
  3. Write a program to find ASCII values of a character. (code)
  4. Write a program to find Number of digits in an integer. (code)
  5. Write a program to find Factorial of a number. (code)
  6. Write a program to find Fibonacci series up to n.(code)
  7. Write a program to identify of the a number is positive or negative.(code)
  8. Write a program to identify if the number is even or odd.(code)
  9. Write a program to find Area of a circle.(code)
  10. Write a program to find Area of a rectangle. (code)
  11. Write a program to find Area of a Triangle.(code)
  12. Write a program to find Sum of digits of a number.(code)
  13. Write a program to find Sum of N natural numbers. (code)
  14. Write a program to find Sum of numbers in a given range. (code)
  15. Write a program to reverse a given number. (code)
  16. Write a program to find LCM of two numbers.(code)
  17. Write a program to identify if the number is Strong number or not. (Code)
  18. Write a program to identify if the number is Perfect number or not. (code)
  19. Write a program to find Power of a number.(code)
  20. Write a program to find the Factors of a number.(code)
  21. Write a program to Add two fractions.(code)
  22. Write a program to find GCD of two numbers.(code)
  23. Write a program to identify if the number is Armstrong number or not.(code)
  24. Write a program to find Greatest of two numbers. (code)
  25. Write a program to find Greatest of three numbers.(code)
  26. Write a program to identify if the year is Leap year or not.(code)
  27. Write a program to identify if the number is Prime number or not.(code)
  28. Write a program to identify if the number is Palindrome or not. (code)
  29. Write a program to print prime numbers in a given range. (code)
  30. Write a program to print Armstrong numbers between two intervals. (code)
  31. Write a program to express a number as a sum of two prime numbers?(code)
  32. Write a program to Replace all 0’s with 1 in a given integer. (code)
  33. Write a program to print Pyramid pattern using stars.(code)
  34. Write a program to print Pyramid pattern using numbers.(code)
  35. Write a program to print Palindromic pyramid pattern printing. (code)
  36. Write a program to calculate Maximum number of handshakes.(code)
  37. Write a program to find the Quadrants in which coordinates lie.(code).
  38. Write a program to Convert digit/number to words. (code)
  39. Write a program to find Number of days in a given month of a given year.(code)
  40. Write a program to find Permutations in which n people can occupy r seats in a classroom.(code)
  41. Write a program for Binary to decimal conversion. (code)
  42. Write a program for Decimal to binary conversion. (Code)
  43. Write a program for Binary to octal conversion.(code)
  44. Write a program for Octal to binary conversion.(code)
  45. Write a program for Decimal to octal conversion. (code)
  46. Write a program for Octal to decimal conversion. (code)
  47. Write a program to find number of times digit 3 occurs in each and every number from 0 to n. (code)
  48. Write a program to find number of integers which has exactly 9 divisors. (code)
  49. Write a program to find roots of a quadratic equation.(code).
  50. Write a program to print Solid and hollow rectangle star pattern. (code)
  51. Write a program to print Diamond pattern printing using stars. (code)
  52. Write a program to print Diamond pattern printing using numbers. (code)
  53. Write a program to print Floyd’s triangle, (code)
  54. Write a program to print Pascal triangle. (code)
  55. Write a C program to check Least Significant Bit (LSB) of a number is set or not. (code)
  56. Write a Program to copy a string. (code)
  57. Write a Program to reverse a string. (code)
  58. Write a Program to concatenate a string. (code)
  59. Write a Program to compare two strings. (code)
  60. Write a Program to print Length of the string without using strlen() function. (code)
  61. Write a Program to Toggle each character in a string.(code)
  62. Write a Program to Remove vowels from a string.(code)
  63. Write a Program to check if String is a palindrome or not. (code)
  64. Write a Program to Sort a string in alphabetical order. (Code)
  65. Write a Program to Remove brackets from an algebraic expression . (code)
  66. Write a Program to Remove characters in a string except alphabets .(code)
  67. Write a Program to Remove spaces from a string. (code)
  68. Write a Program to Count the sum of numbers in a string. (code)
  69. Write a Program to Capitalize the first and last letter of each word of a string.(code)
  70. Write a Program to calculate the Frequency of characters in a string.(code)
  71. Write a Program to print non-repeating characters in a string. (code).
  72. Write a Program to check if two strings are Anagram or not. (code)
  73. Write a Program to Replace substring in a string.(code)
  74. Write a Program to Count common subsequence in two strings. (code)
  75. Check if two strings match where one string contains wildcard characters. (Code)
  76. Write Program to check if two arrays are the same or not. (code)
  77. Write Program to find the array type. (code)
  78. Write Program to find missing elements of a range. (code)
  79. Write Program to find Triplets with a given sum.(code)
  80. Write Program to find number of even and odd elements in an array. (code)
  81. Write Program to find Frequency of each element of an array. (Code)
  82. Write Program for basic array operations (Insert, delete and search an element)(code)
  83. Write Program to find smallest and largest element in an array.(code)
  84. Write Program to find sum of elements in an array.(code)
  85. Write Program to find longest palindrome in an array.(code)
  86. Write Program to remove duplicate elements in an array. (Code)
  87. Write Program to find minimum scalar product of two vectors. (code)
  88. Write Program to find sum of positive square elements in an array. (code)
  89. Write Program to find second smallest element in an array. (Code)
  90. Write Program to for sorting the elements of an array. (code)
  91. Write Program for Reversing an array. (code)
  92. Write Program to find maximum product subarray in a given array. (code)
  93. Write Program to find whether Arrays are disjoint or not. (code)
  94. Write Program to find whether an array is a subset of another array or not. (code)
  95. Write Program to find maximum scalar product of two vectors. (code)
  96. Write Program to find whether the numbers of an array be made equal? (code)
  97. Write Program to find symmetric pairs in an array. (Code)
  98. Write Program to count distinct elements of an array. (code)
  99. Write Program to find non-repeating elements of an array. (code)
  100. Write Program to find repeating elements in an array. (code)

About

Started with my 100 days of coding challenge with C Programming language

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages