1000+ C Programming Programs List

This section contains 1000+ code written in C Programming language. Our motive is to help Computer Programming Students across the world learn and excel in c programming.

You can find all sorts of programs, from Beginner(Amatuer) to Advance levels. Each program may contain brief explanation about what the code does.

You can download the programs for free! If you would write to contribute, please write to us.

List of Programs :


  1. Print even numbers 2 4 6 8 10 ...

  2. Print odd numbers 1 3 5 7 9 ...

  3. Sum of series 1 + 1/2 + 1/3 + 1/4 + .... + 1/n

  4. Sum of series 1 + 2 + 3 + 4 + .... + n

  5. Sum of series 2 + 4 + 6 + 8 + .... + n

  6. Find square root of a number

  7. Find cube root of a number

  8. Add 10 numbers using array

  9. Find max of 10 numbers using array

  10. Find min of 10 numbers using array

  11. Find average of 10 numbers using array

  12. Find the number is a Armstrong Number

  13. Print Armstrong number between 1 to 999

  14. Print number from 1 to 10 in reverse

  15. Biggest of 3 numbers using ternary operator

  16. Lowercase to Uppercase

  17. Uppercase to Lowercase

  18. Print string inputted in console

  19. Read sentence in uppercase to lowercase

  20. Read sentence in lowercase to uppercase

  21. swap uppercase to lowercase

  22. Read and print in 2x2 matrix

  23. Read and print in 3x3 matrix

  24. 89_add_two_numbers_inputted_by_user_console_c.php

  25. 90_read_3_number_from_console_and_display_biggest_c.php

  26. 91_read_3_number_from_console_and_display_smallest_c.php

  27. 92_leap_year_using_ternary_operator_c.php

  28. 93_accept_string_and_display_words_in_newlines_c.php

  29. 94_print_number_of_uppercases_and_lowercases_in_a_string_c.php

  30. 95_print_prime_numbers_between_1_to_100_c.php

  31. 96_prime_numbers_between_1_to_1000_c.php

  32. 97_number_to_words_1_to_10_c.php

  33. 98_sum_of_two_numbers_using_addition_function_c.php

  34. 99_difference_of_two_numbers_using_subtract_function_c.php

  35. 100_accept_10_numbers_and_display_them_in_reverse_order_c.php

  36. 101_print_enter_string_in_reverse_order_c.php

  37. 102_find_string_length_without_using_string_function_c.php

  38. 103_compare_two_inputted_string_using_strcmp_function_c.php

  39. 104_length_of_string_using_strlen_function_c.php

  40. 105_find_number_of_newlines_in_entered_string_c.php

  41. 106_find_number_of_spaces_in_entered_string_c.php

  42. 107_detect_tabs_entered_in_a_string_c.php

  43. 108_count_lines_words_and_characters_entered_in_a_string_c.php