{"id":15049003,"url":"https://github.com/codewithsandy/c","last_synced_at":"2025-04-10T01:40:47.561Z","repository":{"id":51355491,"uuid":"365528283","full_name":"codewithsandy/C","owner":"codewithsandy","description":"It explains in a elegantly c basics, numerical, data structure, algorithms, equations, patterns, matrix, file management, memory allocation...","archived":false,"fork":false,"pushed_at":"2021-06-08T14:15:18.000Z","size":249,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T03:22:28.033Z","etag":null,"topics":["algorithm","algorithms","ansi-c","bootstrap","c","c-language","codecamp","compiler","computer-engineering","computer-science","data-structures","github","go","good-practices","hackthon","language","learn-to-code","pointer","programmer","programming-language"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codewithsandy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-08T13:59:48.000Z","updated_at":"2023-09-20T22:13:56.000Z","dependencies_parsed_at":"2022-09-11T01:50:38.692Z","dependency_job_id":null,"html_url":"https://github.com/codewithsandy/C","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithsandy%2FC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithsandy%2FC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithsandy%2FC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithsandy%2FC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewithsandy","download_url":"https://codeload.github.com/codewithsandy/C/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248142011,"owners_count":21054574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithm","algorithms","ansi-c","bootstrap","c","c-language","codecamp","compiler","computer-engineering","computer-science","data-structures","github","go","good-practices","hackthon","language","learn-to-code","pointer","programmer","programming-language"],"created_at":"2024-09-24T21:17:34.340Z","updated_at":"2025-04-10T01:40:47.534Z","avatar_url":"https://github.com/codewithsandy.png","language":"C","readme":"# \u003ch1\u003e\u003cb\u003eC Programming\u003c/b\u003e\u003c/h1\u003e\n\n\u003ch3\u003eThis will helps you to enhancement in C. This will explains in a easy-to-understand.\u003c/h3\u003e\n\u003chr\u003e\n\n# ANSI C \n\n\u003ch4\u003e This document cover all the basics to advance programs like  \u003c/h4\u003e \n\u003ch3\u003e\nArithmetic Numeric Analysis | Loops | Array | String | Function | List | Linked List | Methods \u0026 Equations | Operators \u0026 Expressions | Structures \u0026 Unions | Print Patterns | Data Structure | Randomized Algorithms | Searching | Sorting | Stack \u0026 Queue algorithm | Hashing | Graph | Tree | File Management \u0026 Operations | Memory Allocation | Client-Server |\u003c/h3\u003e\n\u003chr\u003e\n\n\u003ch2\u003eMy C Examples for everyone \u003c/h2\u003e\n\nI do consider myself as a programmer. And I create these little programs as experiments to learn with \u003cb\u003eANSI C\u003c/b\u003e, or to solve problems for myself. \nI would gladly accept pointers from others to improve, simplify, or make the code more efficient. If you would like to make any comments then please feel free to email me:\n\n\u003ch3\u003e\u003cb\u003eSANDESH POL.\u003c/b\u003e\u003c/h3\u003e\n\n:email: sandeshpol123@gmail.com\n\u003chr\u003e\n\n# My Best C Examples for education\n\n- [Hello World](https://github.com/codewithsandy/C/blob/master/01.%20Hello%20World.c) - First program in c.\n- [Array](https://github.com/codewithsandy/C/tree/master/Array) - We have used Array in a many of examples on string and number's in this directory.\n   \u003cdetails\u003e\u003csummary\u003e Programs\u003c/summary\u003e\n   \n   - [1](https://github.com/codewithsandy/C/blob/master/Array/57.%20Add%20'n'%20numbers%20using%20array.c) - Add 'n' numbers using array.\n   - [2](https://github.com/codewithsandy/C/blob/master/Array/104.%20%20palindrome%20of%20word%20using%20array.c) - Program to check the palindrome of word using array.\n   - [3](https://github.com/codewithsandy/C/blob/master/Array/111.%20Arrange%20array%20in%20ascending%20order.c) - Program to arrange array numbers in ascending order.\n   - [4](https://github.com/codewithsandy/C/blob/master/Array/113.%20Delete%20an%20element%20from%20array.c) - Program to delete an element from array.\n   - [5](https://github.com/codewithsandy/C/blob/master/Array/117.%20Largest%20and%20Smallest%20number%20in%20array.c) - Program to find Largest and Smallest number in array.\n   - [6](https://github.com/codewithsandy/C/blob/master/Array/118.%20reverse%20the%20array.c) - Program to reverse the array. \u003c!-- 118 --\u003e\n   - [7](https://github.com/codewithsandy/C/blob/master/Array/119.%20insert%20an%20element%20in%20array.c) - Program to insert an element in array. \u003c!-- 119 --\u003e\n   - [8](https://github.com/codewithsandy/C/blob/master/Array/114.%20Delete%20number%20from%20array.c) - Program to delete given number from array. \u003c!-- 114 --\u003e\n \n\n- [String](https://github.com/codewithsandy/C/tree/master/String) - We have used String in a number of examples in this directory.\n- [Do While Loop](https://github.com/codewithsandy/C/tree/master/Loop) - We have used do while looping structure in many programs.\n- [Linked List](https://github.com/codewithsandy/C/graphs/traffic) - This directory contains the linked list programs.\n\n- [Arithmetic Numerical](https://github.com/codewithsandy/C/tree/master/Arithmetic%20Numerical) - Contains the differents Arithmetic numerical operations.\n- [Numerical Method's](https://github.com/codewithsandy/C/tree/master/Numerical%20Method's) - Contains the differents Arithmetic Methods and Equations.\n   \u003cdetails\u003e\u003csummary\u003e Programs\u003c/summary\u003e\n   \n   - [1](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/13.%20%20Find%20the%20roots%20of%20a%20quadratic%20equation.c) - Program to find the roots of a quadratic equation.\n   - [2](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/76.%20Sum%20of%20factorial%20series%2011!%20%2B%2022!%20%2B...1N!.c) - Program to print sum of factorial series 1/1! + 2/2! +...1/N!\n   - [3](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/77.%20Sum%20of%20'n'%20terms%20in%20Taylor%20series.c) - Program to calculate the sum of 'n' terms in Taylor series.\n   - [4](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/83.%20Find%20area%20of%20triangle%20using%20Heron's%20formula.c) - Program to find area of triangle using Heron's formula.\n   - [5](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/86.%20Find%20f(x)%20by%20Lagrange's%20interpolation%20method.c) - Program to find f(x) by Lagrange's interpolation method.\n   - [6](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/89.%20General%20Newton%20Raphson.c) - Program for Newton Raphson General.\n   - [7](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/91.%20Simpson%2013%20rule.c) - Program for Simpson 1/3 rule.\n   - [8](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/123.%20Goldbach's%20Conjecture.c) - Program for Goldbach's Conjecture.\n   - [9](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/135.%20Sieve%20of%20Eratosthenes%20%20An%20algorithm%20to%20generate%20all%20the%20prime%20numbers%20within%20an%20range.c) - Sieve of Eratosthenes : An algorithm to generate all the prime numbers within an range.\n   - [10](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/157.%20Durand%20Kerner%20Roots.c) - Durand Kerner Roots.\n   - [11](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/158.%20Gauss%20Elimination.c) - Program for Gauss Elimination Method.\n   - [12](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/159.%20Gauss%20Seidel%20Method.c) - Program for Gauss Seidel Method.\n   - [13](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/160.%20Lagrange%20Theorem.c) - Lagrange Theorem..\n   - [14](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/161.%20Newton-Raphson%20interpolation.c) - Newton-Raphson interpolation algorithm..\n   - [15](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/162.%20Ode%20Forward%20Euler.c) - Ordinary differential equation using forward Euler\n   - [16](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/163.%20Mean.c) - Mean.\n   - [17](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/164.%20Median.c) - Median.\n   - [18](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/165.%20Variance.c) - Variance.\n   - [19](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/166.%20QR%20Eigen%20Values.c) - Compute real eigen values and eigen vectors of a symmetric matrix method  \n   - [20](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/167.%20Realtime%20Stats.c) - Compute statistics for data entered in Real-time Stats\n   - [21](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/168.%20LU%20Decompose.c) - LU decomposition square matrix \n   - [22](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/169.%20Ode%20Midpoint%20Euler.c) - Solve a multivariable first order [ordinary differential equation (ODEs) using (midpoint Euler method)\n   - [23](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/170.%20ODE%20semi%20implicit%20Euler.c) - Solve a multivariable first order [ordinary differential equation (ODEs) using [semi implicit Euler method] \n   - [24](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/171.%20Qr%20Decompose.h) - QR decomposition of a given matrix.\n   - [25](https://github.com/codewithsandy/C/blob/master/Numerical%20Methods/172.%20Qr%20Decomposition.c) - Program to compute the QR decomposition of a given matrix.\n   \n      \n- [Complex Number](https://github.com/codewithsandy/C/tree/master/Complex%20Number) - This directory contains the complex number programs.\n- [Operators](https://github.com/codewithsandy/C/tree/master/Operators) - Contains the different programs of operators.\n \n- [Pointer](https://github.com/codewithsandy/C/tree/master/Pointer) - Contains the Pointer programs.\n- [Matrics Programs](https://github.com/codewithsandy/C/tree/master/Matrix) - Contains the programs of differents operations on matrics.\n    \u003cdetails\u003e\u003csummary\u003e Programs\u003c/summary\u003e\n   \n   - [1](https://github.com/codewithsandy/C/blob/master/Matrix/110.%20Add%20two%20matrix.c) - Program to add two matrix.\n   - [2](https://github.com/codewithsandy/C/blob/master/Matrix/112.%20matrix%20is%20sparse%20or%20not.c) - Program to check whether the matrix is sparse matrix or not.\n   - [3](https://github.com/codewithsandy/C/blob/master/Matrix/115.%20Determinant%20of%202%C3%972%20matrix.c) - Program to calculate the determinant of 2×2 matrix.\n   - [4](https://github.com/codewithsandy/C/blob/master/Matrix/116.%20Determinant%20of%203%C3%973%20matrix.c) - Program to calculate the determinant of 3×3 matrix.\n   - [5](https://github.com/codewithsandy/C/blob/master/Matrix/122.%20Multiplication%20of%20two%20Matrices.c) - Program for Multiplication of two Matrices.\n\n   \n- [Binary Conversion](https://github.com/codewithsandy/C/tree/master/Binary%20Conversion's) - The Spectial programs in c, Decimal to Binary and Binary to Decimal.\n\n- [Searching](https://github.com/codewithsandy/C/tree/master/Search) - Differnet searching programs.\n- [Sorting](https://github.com/codewithsandy/C/tree/master/Sort) - Differnet sorting method programs.\n    \u003cdetails\u003e\u003csummary\u003e Programs\u003c/summary\u003e\n   \n   - [1](https://github.com/codewithsandy/C/blob/master/Sort/120.%20Sort%20array%20using%20Insertion%20sort.c) - Program to sort array using Insertion sort\n   - [2](https://github.com/codewithsandy/C/blob/master/Sort/125.%20Sort%20array%20using%20Selection%20Sort.c) - Program to sort array using Selection Sort.\n   - [3](https://github.com/codewithsandy/C/blob/master/Sort/126.%20Sort%20array%20using%20Bubble%20Sort.c) - Program to sort array using Bubble Sort.\n   - [4](https://github.com/codewithsandy/C/blob/master/Sort/173.%20Bubble%20sort.c) - Program to Bubble sort algorithm implementation.\n   - [5](https://github.com/codewithsandy/C/blob/master/Sort/174.%20Quick%20sort.c) - Program for Quick sort algorithm.\n   - [6](https://github.com/codewithsandy/C/blob/master/Sort/175.%20Heap_sort.c) - Program for Heap sort algorithm.\n   - [7](https://github.com/codewithsandy/C/blob/master/Sort/176.%20Radix_sort.c) - Program for radix sort algorithm.\n   - [8](https://github.com/codewithsandy/C/blob/master/Sort/177.%20Merge_sort.c) - Program for radix sort algorithm.\n   - [9](https://github.com/codewithsandy/C/blob/master/Sort/178.%20Bucket_sort.c) - Program for bucket sort algorithm.\n   - [10](https://github.com/codewithsandy/C/blob/master/Sort/179.%20binary_insertion_sort.c) - Program for binary insertation sort.\n   - [11](https://github.com/codewithsandy/C/blob/master/Sort/180.%20selection_sort.c) - Program for selection sort.\n   - [12](https://github.com/codewithsandy/C/blob/master/Sort/181%20selection_sort_recursive.c) - Program for selection sort recursive.\n   - [13](https://github.com/codewithsandy/C/blob/master/Sort/182.%20insertion_sort.c) - Program for insertion sort.\n   - [14](https://github.com/codewithsandy/C/blob/master/Sort/183.%20insertion_sort_recursive.c) - Program for insertion sort recursive.\n   - [15](https://github.com/codewithsandy/C/blob/master/Sort/184.%20bubble_sort_2.c) - Program for bubble sort.\n   - [16](https://github.com/codewithsandy/C/blob/master/Sort/185.%20bubble_sort_recursion.c) - Program for bubble sort recursive.\n   - [17](https://github.com/codewithsandy/C/blob/master/Sort/186.%20random_quick_sort.c) - Randomised quick sort implementation.\n   - [18](https://github.com/codewithsandy/C/blob/master/Sort/187.%20Merge_sort_non-rec.c) - Program to demonstrate non recursive merge sort\n   - [19](https://github.com/codewithsandy/C/blob/master/Sort/188.%20bead_sort.c) - Sorting of array list using bead sort.\n   - [20](https://github.com/codewithsandy/C/blob/master/Sort/189.%20counting_sort.c) - Program for counting sort.\n   - [21](https://github.com/codewithsandy/C/blob/master/Sort/190.%20heap_sort_2.c) - Program for heap sort.\n   - [22](https://github.com/codewithsandy/C/blob/master/Sort/191.%20Bogo_sort.c) - Program for bogo sort.\n   - [23](https://github.com/codewithsandy/C/blob/master/Sort/192.%20Cocktail_sort.c) - Program for cocktail sort.\n   - [24](https://github.com/codewithsandy/C/blob/master/Sort/193.%20Comb_sort.c) - Program for comb sort.\n   - [25](https://github.com/codewithsandy/C/blob/master/Sort/194.%20Cycle_sort.c) - Program for cycle sort.\n   - [26](https://github.com/codewithsandy/C/blob/master/Sort/195.%20Radix_sort_2.c) - Program for radix sort.\n   - [27](https://github.com/codewithsandy/C/blob/master/Sort/196.%20Shell_sort.c) - Program for shell sort.\n   - [28](https://github.com/codewithsandy/C/blob/master/Sort/197.%20Gnome_sort.c) - Program for gnome sort.\n   - [29](https://github.com/codewithsandy/C/blob/master/Sort/198.%20Pancake_sort.c) - Program for pancake sort.\n   - [30](https://github.com/codewithsandy/C/blob/master/Sort/199.%20Partition_sort.c) - Program for partition sort.\n   - [31](https://github.com/codewithsandy/C/blob/master/Sort/200.%20Multikey_quick_sort.c) - Program for multikey quick sort.\n   - [32](https://github.com/codewithsandy/C/blob/master/Sort/201.%20Pigeonhole_sort.c) - Program for Pigeonhole sort.\n   - [33](https://github.com/codewithsandy/C/blob/master/Sort/202.%20Shaker_sort.c) - Program for shaker sort.\n   - [34](https://github.com/codewithsandy/C/blob/master/Sort/203.%20Shell_sort2.c) - Program for shell sort.\n   - [35](https://github.com/codewithsandy/C/blob/master/Sort/204.%20Stooge_sort.c) - Program for stooge sort.\n\n- [Pattern Programs](https://github.com/codewithsandy/C/tree/master/Pattern) - Select Your Favourite pattern and get code on this directory with respective number.\n   \u003cdetails\u003e\u003csummary\u003e Programs \u003c/summary\u003e\n   \n   - [21](https://github.com/codewithsandy/C/blob/master/Pattern/21.%20Half%20Pyramid%20of%20star.c) - Program for Half Pyramid of *.\n   - [22](https://github.com/codewithsandy/C/blob/master/Pattern/22.%20Half%20inverted%20pyramid%20of%20star.c) - Program for Half Inverted Pyramid of *\n   - [23](https://github.com/codewithsandy/C/blob/master/Pattern/23.%20Full%20Pyramid%20of%20star.c) - Program for Full Pyramid of *\n   - [24](https://github.com/codewithsandy/C/blob/master/Pattern/24.%20Half%20pyramid%20of%20number.c) - Program for half pyramid of  numbers.\n   - [25](https://github.com/codewithsandy/C/blob/master/Pattern/25.%20Half%20pyramid%20of%20reverse%20number.c) - Program for Half pyramid of reverse number. \n   - [26](https://github.com/codewithsandy/C/blob/master/Pattern/26.%20Half%20pyramid%20of%20alphabet.c) - Program  for patterns of half alphabets\n   - [27](https://github.com/codewithsandy/C/blob/master/Pattern/27.%20Pattern%20(1%2C121%2C12321)%20format.c) - Program  for patterns of numbers\n   - [28](https://github.com/codewithsandy/C/blob/master/Pattern/28.%20Half%20Pyramid%20of%20Binart%20digit.c) - Pattern of half pyramid of binary digit\n   - [29](https://github.com/codewithsandy/C/blob/master/Pattern/29.%20Half%20pyramid%20inverted%20no.c) - Pattern half pyramid of inverted number\n   - [30](https://github.com/codewithsandy/C/blob/master/Pattern/30.%20Reverse%20half-pyramid%20of%20num.c) - Pattern reverse half pyramid of number\n   - [31](https://github.com/codewithsandy/C/blob/master/Pattern/31.%20Dis-joint%20number%20pyramid%20.c) - Program for Disjoint Pyramid Pattern of number\n   - [32](https://github.com/codewithsandy/C/blob/master/Pattern/32.%20Floyd's%20triangle.c) - Program for pyramid of Floyd's triangle\n   - [33](https://github.com/codewithsandy/C/blob/master/Pattern/33.%20Pyramid%20of%20star.c) - Program for Pyramid of star\n   - [34](https://github.com/codewithsandy/C/blob/master/Pattern/34.%20Pyramid%20star_A_star.c) - Program for Pyramid pattern.\n   - [35](https://github.com/codewithsandy/C/blob/master/Pattern/35.%20Pyramid%201-9%20number.c) - Pattern for Number Pyramid.\n   - [36](https://github.com/codewithsandy/C/blob/master/Pattern/36.%20Pascal%20triangle.c) - Program for pyramid of Pascal triangle\n   - [37](https://github.com/codewithsandy/C/blob/master/Pattern/37.%20Pascal%20triangle(without%20function).c) - Pascal triangle without using function.\n   - [38](https://github.com/codewithsandy/C/blob/master/Pattern/38.%20Pascal%20triangle(1%2C121).c) - Program for Pascal triangle 2.\n   - [39](https://github.com/codewithsandy/C/blob/master/Pattern/39.%20Half%20Pyramid(number%2Calphabet).c) - Program for Pyramid of Number Alphabet Pattern.\n   - [40](https://github.com/codewithsandy/C/blob/master/Pattern/40.%20Star%20diamond.c) - Diamond Pattern.\n   - [41](https://github.com/codewithsandy/C/blob/master/Pattern/41.%20Num%20Diamond.c) - Program for Number Diamond Pattern.\n   - [42](https://github.com/codewithsandy/C/blob/master/Pattern/42.%20Diamond%20(1%2C222).c) - Program for Diamond of Numbers Pattern.\n   - [43](https://github.com/codewithsandy/C/blob/master/Pattern/43.%20Diamond%20star%20outline.c) - Program for pattern of diamond star outline.\n   - [44](https://github.com/codewithsandy/C/blob/master/Pattern/44.%20Hollow%20Diamond.c) - Program for pattern of Hollow Diamond\n   - [45](https://github.com/codewithsandy/C/blob/master/Pattern/45.%20Hollow%20Square.c) - Program for pattern of Hollow Square.\n   - [46](https://github.com/codewithsandy/C/blob/master/Pattern/46.%20Hourglass%20Pattern.c) - Program for pattern of  Hourglass \n   - [47](https://github.com/codewithsandy/C/blob/master/Pattern/47.%20Nested%20Star-Hash%20Pyramid.c) - Nested Star-Hash Pyramid.\n   - [48](https://github.com/codewithsandy/C/blob/master/Pattern/48.%20Reverse%20star%20pyramid.c) - Program for Reverse star pyramid.\n   - [49](https://github.com/codewithsandy/C/blob/master/Pattern/49.%20Rhombus%20Pattern.c) - Program for Rhombus Pattern.\n   - [50](https://github.com/codewithsandy/C/blob/master/Pattern/50.%20Square%20kite%20pattern.c) - Program for Square kite pattern.\n   - [51](https://github.com/codewithsandy/C/blob/master/Pattern/51.%20Triangle%20with%20only%20border.c) - Program for Triangle with only border\n   - [124](https://github.com/codewithsandy/C/blob/master/Pattern/124.%20Numerical%20Spiral%20Pattern.c) - Program for Numerical Spiral Pattern.\n   - [128](https://github.com/codewithsandy/C/blob/master/Pattern/128.%20Half%20Pyramid%20Pattern(1%2C%2032%2C%20456).c) - Program for Pattern.\n   - [129](https://github.com/codewithsandy/C/blob/master/Pattern/129.%20half%20Pattern(1%2C%208%202%2C14%209%203).c) - Program for Pattern.\n   - [130](https://github.com/codewithsandy/C/blob/master/Pattern/130.%20Swastika%20pattern.c) - Program for Swastika pattern.\n   - [131](https://github.com/codewithsandy/C/blob/master/Pattern/131.%20H%20pattern.c) - Program for H pattern\n   - [132](https://github.com/codewithsandy/C/blob/master/Pattern/132.%20Diamond%204%20Pattern.c) - Program for @\n \n![PATTERN1](https://user-images.githubusercontent.com/80276013/117767122-1ede2400-b24e-11eb-8fed-b4b361c14f69.png)\n![PATTERN2](https://user-images.githubusercontent.com/80276013/117767135-24d40500-b24e-11eb-9489-5e33ab3ae48e.png)\n![PATTERN3](https://user-images.githubusercontent.com/80276013/117767156-2ac9e600-b24e-11eb-97bb-5c3f70e56e0f.png)\n![PATTERN4](https://user-images.githubusercontent.com/80276013/117767170-2f8e9a00-b24e-11eb-9c57-8f73e73fedd1.png)\n![PATTERN5](https://user-images.githubusercontent.com/80276013/117767187-32898a80-b24e-11eb-8d91-37d301ff76be.png)\n\u003chr\u003e\n\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp \u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp\u0026nbsp Thanks for reading, give a star.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithsandy%2Fc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewithsandy%2Fc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithsandy%2Fc/lists"}