├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Arrays ├── Array_Intersection_Calculator │ ├── Array_Intersection_Calculator.txt │ ├── Solution │ │ ├── Array_Intersection_Calculator.c │ │ ├── README.md │ │ ├── main.c │ │ └── main.exe │ ├── a.out │ └── sid_solution.c ├── Array_Leaders_Finder │ ├── Array_Leaders_Finder.txt │ ├── Solution │ │ ├── README.md │ │ └── main.c │ ├── a.out │ └── sid_solution.c ├── Array_Product_Excluding_Self_Calculator │ ├── Array_Product_Excluding_Self_Calculator.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Array_Right_Rotator │ ├── Array_Right_Rotator.txt │ └── Solution │ │ └── README.md ├── Divisible_Sum_Pairs_Checker │ ├── Divisible_Sum_Pairs_Checker.txt │ └── Solution │ │ └── README.md ├── Duplicate_Number_Detector │ ├── Duplicate_Number_Detector.txt │ └── Solution │ │ └── README.md ├── Duplicate_Remover_without_Libraries │ ├── Duplicate_Remover_without_Libraries.txt │ └── Solution │ │ └── README.md ├── Equilibrium_Index_Finder │ ├── Equilibrium_Index_Finder.txt │ └── Solution │ │ └── README.md ├── Kth_Max-Min_Element_Retriever │ ├── Kth_Max-Min_Element_Retriever.txt │ └── Solution │ │ └── README.md ├── Longest_Consecutive_Subsequence_Locator │ ├── Longest_Consecutive_Subsequence_Locator.txt │ └── Solution │ │ └── README.md ├── Majority_Element_Identifier │ ├── Majority_Element_Identifier.txt │ └── Solution │ │ └── README.md ├── Max-Min_Finder_in_an_Unsorted_Array │ ├── Max-Min_Finder_in_an_Unsorted_Array.txt │ └── Solution │ │ └── README.md ├── Minimum_Sum_Subarray_Finder │ ├── Minimum_Sum_Subarray_Finder.txt │ └── Solution │ │ └── README.md ├── Missing_Number_Finder_in_a_1-to-500_Sequence │ ├── Missing_Number_Finder_in_a_1-to-500_Sequence.txt │ └── Solution │ │ └── README.md ├── Multiple_Duplicates_Identifier │ ├── Multiple_Duplicates_Identifier.txt │ └── Solution │ │ └── README.md ├── Occurrence_Counter_in_a_Sorted_Array │ ├── Occurrence_Counter_in_a_Sorted_Array.txt │ └── Solution │ │ └── README.md ├── Peak_Element_Identifier │ ├── Peak_Element_Identifier.txt │ └── Solution │ │ └── README.md ├── Positive-Negative_Rearranger │ ├── Positive-Negative_Rearranger.txt │ └── Solution │ │ └── README.md ├── Quicksort_Array_Sorter │ ├── Quicksort_Array_Sorter.txt │ └── Solution │ │ └── README.md ├── Self-Referential_Array_Transformer │ ├── Self-Referential_Array_Transformer.txt │ └── Solution │ │ └── README.md ├── Sorted_Arrays_Merger │ ├── Solution │ │ └── README.md │ └── Sorted_Arrays_Merger.txt ├── Target_Sum_Pairs_Locator │ ├── Solution │ │ └── README.md │ └── Target_Sum_Pairs_Locator.txt ├── Two_Repeating_Elements_Finder │ ├── Solution │ │ └── README.md │ └── Two_Repeating_Elements_Finder.txt ├── Zero-Mover_to_the_Left │ ├── Solution │ │ └── README.md │ └── Zero-Mover_to_the_Left.txt └── Zero_Sum_Subarray_Detector │ ├── Solution │ └── README.md │ └── Zero_Sum_Subarray_Detector.txt ├── Bit_Manipulations ├── Calculate_a_power_b_Using_Bit_Manipulation │ ├── Calculate_a_power_b_Using_Bit_Manipulation.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Check_for_Alternate_Bits │ ├── Check_for_Alternate_Bits.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Check_if_Binary_Representation_of_a_Number_is_Palindrome │ ├── Check_if_Binary_Representation_of_a_Number_is_Palindrome.txt │ └── Solution │ │ └── README.md ├── Check_if_Number_is_Multiple_of_3 │ ├── Check_if_Number_is_Multiple_of_3.txt │ └── Solution │ │ └── README.md ├── Clear_Bits_From_MSB_to_i │ ├── Clear_Bits_From_MSB_to_i.txt │ └── Solution │ │ └── README.md ├── Convert_Decimal_to_Binary │ ├── Convert_Decimal_to_Binary.txt │ └── Solution │ │ └── README.md ├── Count_Number_of_Flips_to_Convert_A_to_B │ ├── Count_Number_of_Flips_to_Convert_A_to_B.txt │ └── Solution │ │ └── README.md ├── Count_Set_Bits │ ├── Count_Set_Bits.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Detecting_Power_of_Two │ ├── Detecting_Power_of_Two.txt │ └── Solution │ │ └── README.md ├── Determine_if_Two_Integers_Have_Opposite_Signs │ ├── Determine_if_Two_Integers_Have_Opposite_Signs.txt │ └── Solution │ │ └── README.md ├── Extract_n_Bits │ ├── Extract_n_Bits.txt │ └── Solution │ │ └── README.md ├── Find_Parity_of_a_Number │ ├── Find_Parity_of_a_Number.txt │ └── Solution │ │ └── README.md ├── Find_Two_Unique_Numbers_in_Array │ ├── Find_Two_Unique_Numbers_in_Array.txt │ └── Solution │ │ └── README.md ├── Find_a_Unique_Number_in_an_Array │ ├── Find_a_Unique_Number_in_an_Array.txt │ └── Solution │ │ └── README.md ├── Generate_All_Possible_Combinations_of_n_Bits │ ├── Generate_All_Possible_Combinations_of_n_Bits.txt │ └── Solution │ │ └── README.md ├── Implement_Bitwise_Right_Shift │ ├── Implement_Bitwise_Right_Shift.txt │ └── Solution │ │ └── README.md ├── Implement_XOR_Without_Using_XOR_Operator │ ├── Implement_XOR_Without_Using_XOR_Operator.txt │ └── Solution │ │ └── README.md ├── Isolate_the_Rightmost_Set_Bit │ ├── Isolate_the_Rightmost_Set_Bit.txt │ └── Solution │ │ └── README.md ├── Mask_Certain_Bits │ ├── Mask_Certain_Bits.txt │ └── Solution │ │ └── README.md ├── Reverse_Bits_in_a_Byte │ ├── Reverse_Bits_in_a_Byte.txt │ └── Solution │ │ └── README.md ├── Rotate_Bits │ ├── Rotate_Bits.txt │ └── Solution │ │ └── README.md ├── Set_Bits_Without_Using_Arithmetic_Operations │ ├── Set_Bits_Without_Using_Arithmetic_Operations.txt │ └── Solution │ │ └── README.md ├── Single_Number_in_Array │ ├── Single_Number_in_Array.txt │ └── Solution │ │ └── README.md ├── Swap_Odd_and_Even_Bits │ ├── Solution │ │ └── README.md │ └── Swap_Odd_and_Even_Bits.txt └── Toggle_3rd_and_5th_Bits │ ├── Solution │ └── README.md │ └── Toggle_3rd_and_5th_Bits.txt ├── Linked_List ├── Add_Numbers_Represented_by_Lists │ ├── Add_Numbers_Represented_by_Lists.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Clone_Linked_List_With_Random_Pointer │ ├── Clone_Linked_List_With_Random_Pointer.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Common_Ancestor_in_Binary_Tree_Doubly_Linked_List │ ├── Common_Ancestor_in_Binary_Tree_Doubly_Linked_List.txt │ └── Solution │ │ └── README.md ├── Compare_Strings_As_Linked_Lists │ ├── Compare_Strings_As_Linked_Lists.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Convert_Binary_Number_to_Integer │ ├── Convert_Binary_Number_to_Integer.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Delete_Alternate_Nodes │ ├── Delete_Alternate_Nodes.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Detect_And_Remove_Loop │ ├── Detect_And_Remove_Loop.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Detect_Cycle_in_LinkedList │ ├── Detect_Cycle_in_LinkedList.txt │ └── Solution │ │ └── README.md ├── Find_Middle_Element │ ├── Find_Middle_Element.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Find_Nth_Node_From_End │ ├── Find_Nth_Node_From_End.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Flatten_Multi_Level_Linked_List │ ├── Flatten_Multi_Level_Linked_List.txt │ └── Solution │ │ └── README.md ├── Intersection_Point_Two_Lists │ ├── Intersection_Point_Two_Lists.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Length_of_Linked_List │ ├── Length_of_Linked_List.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Linked_List_Is_Palindrome │ ├── Linked_List_Is_Palindrome.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Merge_Sort_on_Linked_List │ ├── Merge_Sort_on_Linked_List.txt │ └── Solution │ │ └── README.md ├── Merge_Two_Sorted_Lists │ ├── Merge_Two_Sorted_Lists.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Move_Last_Element_To_Front │ ├── Move_Last_Element_To_Front.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Pairwise_Swap_Elements │ ├── Pairwise_Swap_Elements.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Partition_Linked_List_Around_Value │ ├── Partition_Linked_List_Around_Value.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Remove_Duplicates_Unsorted │ ├── Remove_Duplicates_Unsorted.txt │ └── Solution │ │ └── README.md ├── Remove_Nodes_of_Specific_Value │ ├── Remove_Nodes_of_Specific_Value.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Reverse_Linked_List │ ├── Reverse_Linked_List.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Reverse_Linked_List_No_Recursion │ ├── Reverse_Linked_List_No_Recursion.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Segregate_Even_Odd_Nodes │ ├── Segregate_Even_Odd_Nodes.txt │ └── Solution │ │ ├── README.md │ │ └── main.c └── Sum_of_Linked_Lists_Using_Stack │ ├── Solution │ └── README.md │ └── Sum_of_Linked_Lists_Using_Stack.txt ├── Linux_Internals ├── CPU_Information_Fetcher │ ├── CPU_Information_Fetcher.txt │ └── Solution │ │ └── README.md ├── CPU_Scheduling_Algorithm │ ├── CPU_Scheduling_Algorithm.txt │ └── Solution │ │ └── README.md ├── Command_line_Argument_Parser │ ├── Command_line_Argument_Parser.txt │ └── Solution │ │ └── README.md ├── Custom_Signal_Handling │ ├── Custom_Signal_Handling.txt │ └── Solution │ │ └── README.md ├── Custom_init_Process │ ├── Custom_init_Process.txt │ └── Solution │ │ └── README.md ├── Custom_malloc_free │ ├── Custom_malloc_free.txt │ └── Solution │ │ └── README.md ├── Custom_ps_Command │ ├── Custom_ps_Command.txt │ └── Solution │ │ └── README.md ├── File_Copy_Program │ ├── File_Copy_Program.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Filesystem_Traversal_opendir_readdir │ ├── Filesystem_Traversal_opendir_readdir.txt │ └── Solution │ │ └── README.md ├── Implement_Priority_Inversion_Handling │ ├── Implement_Priority_Inversion_Handling.txt │ └── Solution │ │ └── README.md ├── Implement_Simple_Shell │ ├── Implement_Simple_Shell.txt │ └── Solution │ │ └── README.md ├── Implement_chmod_Command │ ├── Implement_chmod_Command.txt │ └── Solution │ │ └── README.md ├── Implement_ping_Command │ ├── Implement_ping_Command.txt │ └── Solution │ │ └── README.md ├── Implement_tail_Command │ ├── Implement_tail_Command.txt │ └── Solution │ │ └── README.md ├── Implement_watch_Command │ ├── Implement_watch_Command.txt │ └── Solution │ │ └── README.md ├── Implement_whois_Command │ ├── Implement_whois_Command.txt │ └── Solution │ │ └── README.md ├── Mutex_based_File_Access │ ├── Mutex_based_File_Access.txt │ └── Solution │ │ └── README.md ├── Priority_Inversion_Problem │ ├── Priority_Inversion_Problem.txt │ └── Solution │ │ └── README.md ├── Process_Forking_Waiting │ ├── Process_Forking_Waiting.txt │ └── Solution │ │ └── README.md ├── Semaphore_based_Producer_Consumer │ ├── Semaphore_based_Producer_Consumer.txt │ └── Solution │ │ └── README.md ├── Terminal_Multiplexer │ ├── Solution │ │ └── README.md │ └── Terminal_Multiplexer.txt ├── Thread_Creation_Synchronization │ ├── Solution │ │ └── README.md │ └── Thread_Creation_Synchronization.txt ├── User_Space_File_Reader │ ├── Solution │ │ └── README.md │ └── User_Space_File_Reader.txt ├── User_Space_to_Kernel_Space_Communication │ ├── Solution │ │ └── README.md │ └── User_Space_to_Kernel_Space_Communication.txt └── Zero_Copy_Data_Transfer │ ├── Solution │ └── README.md │ └── Zero_Copy_Data_Transfer.txt ├── Memory_Management ├── Custom_strdup_Function │ ├── Custom_strdup_Function.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Dynamic_Array │ ├── Dynamic_Array.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Fragmentation_Detector │ ├── Fragmentation_Detector.txt │ └── Solution │ │ └── README.md ├── Garbage_Collector_Simulator │ ├── Garbage_Collector_Simulator.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Heap_Metadata_Inspector │ ├── Heap_Metadata_Inspector.txt │ └── Solution │ │ └── README.md ├── Memory-Bound_Priority_Queue │ ├── Memory-Bound_Priority_Queue.txt │ └── Solution │ │ ├── README.md │ │ └── pq_fixed_heap.c ├── Memory-Mapped_Circular_Buffer │ ├── Memory-Mapped_Circular_Buffer.txt │ └── Solution │ │ └── README.md ├── Memory_Access_Logger │ ├── Memory_Access_Logger.txt │ └── Solution │ │ └── README.md ├── Memory_Alignment_Checker │ ├── Memory_Alignment_Checker.txt │ └── Solution │ │ └── README.md ├── Memory_Defragmenter │ ├── Memory_Defragmenter.txt │ └── Solution │ │ └── README.md ├── Memory_Footprint_Analyzer │ ├── Memory_Footprint_Analyzer.txt │ └── Solution │ │ └── README.md ├── Memory_Initialization_Library │ ├── Memory_Initialization_Library.txt │ └── Solution │ │ └── README.md ├── Memory_Leak_Detector │ ├── Memory_Leak_Detector.txt │ └── Solution │ │ └── README.md ├── Memory_Offset_Calculator │ ├── Memory_Offset_Calculator.txt │ └── Solution │ │ └── README.md ├── Memory_Overlay_Management │ ├── Memory_Overlay_Management.txt │ └── Solution │ │ └── README.md ├── Memory_Pool │ ├── Memory_Pool.txt │ └── Solution │ │ └── README.md ├── Memory_Safety_Checker │ ├── Memory_Safety_Checker.txt │ └── Solution │ │ └── README.md ├── Memory_Statistics_Reporter │ ├── Memory_Statistics_Reporter.txt │ └── Solution │ │ └── README.md ├── Object_Serialization │ ├── Object_Serialization.txt │ └── Solution │ │ └── README.md ├── Segmented_Memory_Allocator │ ├── Segmented_Memory_Allocator.txt │ └── Solution │ │ └── README.md ├── Slab_Allocator │ ├── Slab_Allocator.txt │ └── Solution │ │ └── README.md ├── Stack-based_Memory_Allocator │ ├── Solution │ │ └── README.md │ └── Stack-based_Memory_Allocator.txt ├── Stack_Overflow_Detector │ ├── Solution │ │ └── README.md │ └── Stack_Overflow_Detector.txt ├── Virtual_Memory_Simulator │ ├── Solution │ │ └── README.md │ └── Virtual_Memory_Simulator.txt └── Write-Once_Memory_Simulator │ ├── Solution │ └── README.md │ └── Write-Once_Memory_Simulator.txt ├── Pointers ├── Calculate_Dot_Product_Of_Vectors │ ├── Calculate_Dot_Product_Of_Vectors.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Check_Pointers_Point_To_Same_Array │ ├── Check_Pointers_Point_To_Same_Array.txt │ └── Solution │ │ └── README.md ├── Check_String_Palindrome │ ├── Check_String_Palindrome.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Check_String_Prefix │ ├── Check_String_Prefix.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Concatenate_Strings_Without_Lib │ ├── Concatenate_Strings_Without_Lib.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Convert_String_To_Lowercase │ ├── Convert_String_To_Lowercase.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Count_Array_Elements_Without_Loop │ ├── Count_Array_Elements_Without_Loop.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Custom_Memcpy_Function │ ├── Custom_Memcpy_Function.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Custom_Strtok_Function │ ├── Custom_Strtok_Function.txt │ └── Solution │ │ └── README.md ├── Detect_Pointer_Out_Of_Bounds │ ├── Detect_Pointer_Out_Of_Bounds.txt │ └── Solution │ │ └── README.md ├── Find_Array_Intersection │ ├── Find_Array_Intersection.txt │ └── Solution │ │ └── README.md ├── Find_Common_Elements_In_Sorted_Arrays │ ├── Find_Common_Elements_In_Sorted_Arrays.txt │ └── Solution │ │ └── README.md ├── Find_Data_Type_Size_Without_Sizeof │ ├── Find_Data_Type_Size_Without_Sizeof.txt │ └── Solution │ │ └── README.md ├── Find_First_Non_Repeated_Character │ ├── Find_First_Non_Repeated_Character.txt │ └── Solution │ │ └── README.md ├── Find_Linked_List_Length │ ├── Find_Linked_List_Length.txt │ └── Solution │ │ └── README.md ├── Find_Overlapping_Elements_In_Arrays │ ├── Find_Overlapping_Elements_In_Arrays.txt │ └── Solution │ │ └── README.md ├── Flatten_2D_Array_To_1D │ ├── Flatten_2D_Array_To_1D.txt │ └── Solution │ │ └── README.md ├── Memory_Leak_Detector │ ├── Memory_Leak_Detector.txt │ └── Solution │ │ └── README.md ├── Merge_Two_Sorted_Arrays │ ├── Merge_Two_Sorted_Arrays.txt │ └── Solution │ │ └── README.md ├── Move_2D_Point │ ├── Move_2D_Point.txt │ └── Solution │ │ └── README.md ├── Rotate_Array_By_K_Elements │ ├── Rotate_Array_By_K_Elements.txt │ └── Solution │ │ └── README.md ├── Segregate_Even_And_Odd_Using_Pointers │ ├── Segregate_Even_And_Odd_Using_Pointers.txt │ └── Solution │ │ └── README.md ├── Split_String_Into_Halves │ ├── Solution │ │ └── README.md │ └── Split_String_Into_Halves.txt ├── Swap_Two_Strings_Using_Pointers │ ├── Solution │ │ └── README.md │ └── Swap_Two_Strings_Using_Pointers.txt └── Trim_String_Whitespace │ ├── Solution │ └── README.md │ └── Trim_String_Whitespace.txt ├── README.md ├── Searching ├── Binary_search_recursive │ ├── Binary_search_recursive.txt │ └── Solution │ │ ├── README.md │ │ ├── main.c │ │ └── main1.c ├── Count_array_rotations │ ├── Count_array_rotations.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Count_number_occurrences │ ├── Count_number_occurrences.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Exponential_search │ ├── Exponential_search.txt │ └── Solution │ │ └── README.md ├── Fibonacci_search │ ├── Fibonacci_search.txt │ └── Solution │ │ └── README.md ├── Find_Kth_max_min │ ├── Find_Kth_max_min.txt │ └── Solution │ │ └── README.md ├── Find_first_last_occurrence │ ├── Find_first_last_occurrence.txt │ └── Solution │ │ └── README.md ├── Find_fixed_point │ ├── Find_fixed_point.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Find_majority_element │ ├── Find_majority_element.txt │ └── Solution │ │ └── README.md ├── Find_missing_number_1_to_N │ ├── Find_missing_number_1_to_N.txt │ └── Solution │ │ └── README.md ├── Find_peak_element │ ├── Find_peak_element.txt │ └── Solution │ │ └── README.md ├── Find_repeating_missing │ ├── Find_repeating_missing.txt │ └── Solution │ │ └── README.md ├── Find_smallest_missing │ ├── Find_smallest_missing.txt │ └── Solution │ │ └── README.md ├── Interpolation_search │ ├── Interpolation_search.txt │ └── Solution │ │ └── README.md ├── Jump_search │ ├── Jump_search.txt │ └── Solution │ │ └── README.md ├── Search_bitonic_array │ ├── Search_bitonic_array.txt │ └── Solution │ │ └── README.md ├── Search_nearly_sorted_array │ ├── Search_nearly_sorted_array.txt │ └── Solution │ │ └── README.md ├── Search_sorted_array │ ├── Search_sorted_array.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Search_sorted_matrix │ ├── Search_sorted_matrix.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Search_sorted_rotated_array │ ├── Search_sorted_rotated_array.txt │ └── Solution │ │ └── README.md ├── Search_unknown_length_array │ ├── Search_unknown_length_array.txt │ └── Solution │ │ └── README.md ├── Search_unsorted_array │ ├── Search_unsorted_array.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Sentinel_search │ ├── Sentinel_search.txt │ └── Solution │ │ └── README.md ├── Ternary_search │ ├── Solution │ │ └── README.md │ └── Ternary_search.txt └── Two_numbers_sum_N │ ├── Solution │ ├── README.md │ └── main.c │ └── Two_numbers_sum_N.txt ├── Sorting ├── Bead_Sort │ ├── Bead_Sort.txt │ └── Solution │ │ └── README.md ├── Bitonic_Sort │ ├── Bitonic_Sort.txt │ └── Solution │ │ └── README.md ├── Bogo_Sort │ ├── Bogo_Sort.txt │ └── Solution │ │ └── README.md ├── Bucket_Sort │ ├── Bucket_Sort.txt │ └── Solution │ │ └── README.md ├── Cocktail_Sort │ ├── Cocktail_Sort.txt │ └── Solution │ │ └── README.md ├── Comb_Sort │ ├── Comb_Sort.txt │ └── Solution │ │ └── README.md ├── Counting_Sort_for_Negative_Numbers │ ├── Counting_Sort_for_Negative_Numbers.txt │ └── Solution │ │ └── README.md ├── Cycle_Sort │ ├── Cycle_Sort.txt │ └── Solution │ │ └── README.md ├── Dynamic_Gap_Shell_Sort │ ├── Dynamic_Gap_Shell_Sort.txt │ └── Solution │ │ └── README.md ├── Gnome_Sort │ ├── Gnome_Sort.txt │ └── Solution │ │ └── README.md ├── Heap_Sort_with_Binary_Max_Heap │ ├── Heap_Sort_with_Binary_Max_Heap.txt │ └── Solution │ │ └── README.md ├── In_Place_Merge_Sort │ ├── In_Place_Merge_Sort.txt │ └── Solution │ │ └── README.md ├── Iterative_Quick_Sort │ ├── Iterative_Quick_Sort.txt │ └── Solution │ │ └── README.md ├── Linked_List_Insertion_Sort │ ├── Linked_List_Insertion_Sort.txt │ └── Solution │ │ └── README.md ├── Odd_Even_Sort │ ├── Odd_Even_Sort.txt │ └── Solution │ │ └── README.md ├── Optimized_Bubble_Sort │ ├── Optimized_Bubble_Sort.txt │ └── Solution │ │ └── README.md ├── Pancake_Sort │ ├── Pancake_Sort.txt │ └── Solution │ │ └── README.md ├── Patience_Sort │ ├── Patience_Sort.txt │ └── Solution │ │ └── README.md ├── Permutation_Sort │ ├── Permutation_Sort.txt │ └── Solution │ │ └── README.md ├── Pigeonhole_Sort │ ├── Pigeonhole_Sort.txt │ └── Solution │ │ └── README.md ├── Radix_Sort_for_Floating_Points │ ├── Radix_Sort_for_Floating_Points.txt │ └── Solution │ │ └── README.md ├── Recursive_Merge_Sort │ ├── Recursive_Merge_Sort.txt │ └── Solution │ │ └── README.md ├── Sleep_Sort │ ├── Sleep_Sort.txt │ └── Solution │ │ └── README.md ├── Stooge_Sort │ ├── Solution │ │ └── README.md │ └── Stooge_Sort.txt └── Tim_Sort │ ├── Solution │ └── README.md │ └── Tim_Sort.txt ├── Stacks_and_Queues ├── Balanced_Parentheses_Stack │ ├── Balanced_Parentheses_Stack.txt │ └── Solution │ │ └── README.md ├── Byte-Packing_Stack │ ├── Byte-Packing_Stack.txt │ └── Solution │ │ └── README.md ├── Circular_Queue │ ├── Circular_Queue.txt │ └── Solution │ │ ├── README.md │ │ └── main.c ├── Command_Parser │ ├── Command_Parser.txt │ └── Solution │ │ └── README.md ├── Expression_Validator │ ├── Expression_Validator.txt │ └── Solution │ │ └── README.md ├── Function_Call_Logger │ ├── Function_Call_Logger.txt │ └── Solution │ │ └── README.md ├── Min-Element_Stack │ ├── Min-Element_Stack.txt │ └── Solution │ │ └── README.md ├── Multi-stack_Array │ ├── Multi-stack_Array.txt │ └── Solution │ │ └── README.md ├── Nested_Statement_Counter │ ├── Nested_Statement_Counter.txt │ └── Solution │ │ └── README.md ├── Palindrome_Checker │ ├── Palindrome_Checker.txt │ └── Solution │ │ └── README.md ├── Post-order_Traversal_Stack │ ├── Post-order_Traversal_Stack.txt │ └── Solution │ │ └── README.md ├── Priority_Queue_Heap │ ├── Priority_Queue_Heap.txt │ └── Solution │ │ └── README.md ├── Queue-based_Cache │ ├── Queue-based_Cache.txt │ └── Solution │ │ └── README.md ├── Queue-based_Logger │ ├── Queue-based_Logger.txt │ └── Solution │ │ └── README.md ├── Queue-based_Sequence_Generator │ ├── Queue-based_Sequence_Generator.txt │ └── Solution │ │ └── README.md ├── Queue-based_Text_Filter │ ├── Queue-based_Text_Filter.txt │ └── Solution │ │ └── README.md ├── Queue_Two_Priorities │ ├── Queue_Two_Priorities.txt │ └── Solution │ │ └── README.md ├── Queue_from_Stacks │ ├── Queue_from_Stacks.txt │ └── Solution │ │ └── README.md ├── Radix_Sort_Queue │ ├── Radix_Sort_Queue.txt │ └── Solution │ │ └── README.md ├── Recursive_to_Iterative_Converter │ ├── Recursive_to_Iterative_Converter.txt │ └── Solution │ │ └── README.md ├── Stack-based_Calculator │ ├── Solution │ │ └── README.md │ └── Stack-based_Calculator.txt ├── Stack-based_Text_Editor │ ├── Solution │ │ └── README.md │ └── Stack-based_Text_Editor.txt ├── Stack_Sorting │ ├── Solution │ │ └── README.md │ └── Stack_Sorting.txt ├── String_Message_Queue │ ├── Solution │ │ └── README.md │ └── String_Message_Queue.txt └── Undo_Redo_Stack │ ├── Solution │ └── README.md │ └── Undo_Redo_Stack.txt ├── Strings ├── Alphabetically_Encoding_a_String │ ├── Alphabetically_Encoding_a_String.txt │ └── Solutions │ │ ├── README.md │ │ └── main.c ├── Checking_Anagrams_Between_Two_Strings │ ├── Checking_Anagrams_Between_Two_Strings.txt │ └── Solutions │ │ └── README.md ├── Counting_Balanced_Zero-One_Substrings │ ├── Counting_Balanced_Zero-One_Substrings.txt │ └── Solutions │ │ └── README.md ├── Counting_Character_Occurrences_in_a_String │ ├── Counting_Character_Occurrences_in_a_String.txt │ └── Solutions │ │ ├── README.md │ │ └── main.c ├── Counting_Substring_Occurrences_in_a_String │ ├── Counting_Substring_Occurrences_in_a_String.txt │ └── Solutions │ │ └── README.md ├── Counting_Vowels_and_Consonants_in_a_String │ ├── Counting_Vowels_and_Consonants_in_a_String.txt │ └── Solutions │ │ └── README.md ├── Discovering_the_Longest_Palindromic_Substring │ ├── Discovering_the_Longest_Palindromic_Substring.txt │ └── Solutions │ │ └── README.md ├── Evaluating_Repeated_Substring_Patterns │ ├── Evaluating_Repeated_Substring_Patterns.txt │ └── Solutions │ │ └── README.md ├── Evaluating_String_Interleaving │ ├── Evaluating_String_Interleaving.txt │ └── Solutions │ │ └── README.md ├── Finding_Lexicographically_Minimal_String_Rotation │ ├── Finding_Lexicographically_Minimal_String_Rotation.txt │ └── Solutions │ │ └── README.md ├── Finding_the_First_Unique_Character_in_a_String │ ├── Finding_the_First_Unique_Character_in_a_String.txt │ └── Solutions │ │ └── README.md ├── Finding_the_Most_Frequent_Character │ ├── Finding_the_Most_Frequent_Character.txt │ └── Solutions │ │ └── README.md ├── Generating_All_String_Permutations │ ├── Generating_All_String_Permutations.txt │ └── Solutions │ │ └── README.md ├── Identifying_Duplicate_Characters_in_a_String │ ├── Identifying_Duplicate_Characters_in_a_String.txt │ └── Solutions │ │ ├── README.md │ │ └── main.c ├── Identifying_Longest_Substring_Without_Repeats │ ├── Identifying_Longest_Substring_Without_Repeats.txt │ └── Solutions │ │ └── README.md ├── Listing_Multiple_Occurrences_of_Characters_in_a_String │ ├── Listing_Multiple_Occurrences_of_Characters_in_a_String.txt │ └── Solutions │ │ └── README.md ├── Minimizing_Palindromic_Partitions │ ├── Minimizing_Palindromic_Partitions.txt │ └── Solutions │ │ └── README.md ├── Palindrome_Validation_for_Strings │ ├── Palindrome_Validation_for_Strings.txt │ └── Solutions │ │ └── README.md ├── Pangram_Verification │ ├── Pangram_Verification.txt │ └── Solutions │ │ └── README.md ├── Recursive_String_Reversal │ ├── Recursive_String_Reversal.txt │ └── Solutions │ │ └── README.md ├── Reversing_Words_in_a_Sentence_Without_Libraries │ ├── Reversing_Words_in_a_Sentence_Without_Libraries.txt │ └── Solutions │ │ └── README.md ├── String-to-Integer_Conversion_Without_Built-in_Functions │ ├── Solutions │ │ ├── README.md │ │ └── main.c │ └── String-to-Integer_Conversion_Without_Built-in_Functions.txt ├── Validating_Balanced_Parentheses_in_a_String │ ├── Solutions │ │ └── README.md │ └── Validating_Balanced_Parentheses_in_a_String.txt ├── Verifying_Numeric-only_Characters_in_a_String │ ├── Solutions │ │ └── README.md │ └── Verifying_Numeric-only_Characters_in_a_String.txt └── Verifying_String_Rotations │ ├── Solutions │ └── README.md │ └── Verifying_String_Rotations.txt └── Structures_and_Unions ├── 32bit_value_access ├── 32bit_value_access.txt └── Solution │ ├── README.md │ └── main.c ├── 3D_point_distance ├── 3D_point_distance.txt └── Solution │ ├── README.md │ └── main.c ├── 4byte_value_conversion ├── 4byte_value_conversion.txt └── Solution │ └── README.md ├── IP_address_conversion ├── IP_address_conversion.txt └── Solution │ └── README.md ├── IP_address_representation ├── IP_address_representation.txt └── Solution │ └── README.md ├── book_price_discount ├── Solution │ ├── README.md │ └── main.c └── book_price_discount.txt ├── color_RGB_CMYK ├── Solution │ └── README.md └── color_RGB_CMYK.txt ├── command_parsing ├── Solution │ └── README.md └── command_parsing.txt ├── complex_number_operations ├── Solution │ ├── README.md │ └── main.c └── complex_number_operations.txt ├── data_packet_serialization ├── Solution │ └── README.md └── data_packet_serialization.txt ├── date_difference ├── Solution │ └── README.md └── date_difference.txt ├── device_config_bitfields ├── Solution │ └── README.md └── device_config_bitfields.txt ├── employee_address ├── Solution │ ├── README.md │ └── main.c └── employee_address.txt ├── endianness_conversion ├── Solution │ ├── README.md │ ├── convert_endian.h │ └── main.c └── endianness_conversion.txt ├── error_code_representation ├── Solution │ └── README.md └── error_code_representation.txt ├── file_attributes ├── Solution │ └── README.md └── file_attributes.txt ├── library_database ├── Solution │ └── README.md └── library_database.txt ├── menu_item_function_pointer ├── Solution │ └── README.md └── menu_item_function_pointer.txt ├── network_packet_type ├── Solution │ └── README.md └── network_packet_type.txt ├── structure_memory_optimization ├── Solution │ └── README.md └── structure_memory_optimization.txt ├── student_avg_marks ├── Solution │ ├── README.md │ └── main.c └── student_avg_marks.txt ├── student_linked_list ├── Solution │ └── README.md └── student_linked_list.txt ├── time_operations ├── Solution │ └── README.md └── time_operations.txt ├── variable_data_type_array ├── Solution │ └── README.md └── variable_data_type_array.txt └── vehicle_extended_structure ├── Solution └── README.md └── vehicle_extended_structure.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "disabled" 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/Array_Intersection_Calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/Array_Intersection_Calculator.txt -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/Solution/Array_Intersection_Calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/Solution/Array_Intersection_Calculator.c -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/Solution/main.c -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/Solution/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/Solution/main.exe -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/a.out -------------------------------------------------------------------------------- /Arrays/Array_Intersection_Calculator/sid_solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Intersection_Calculator/sid_solution.c -------------------------------------------------------------------------------- /Arrays/Array_Leaders_Finder/Array_Leaders_Finder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Leaders_Finder/Array_Leaders_Finder.txt -------------------------------------------------------------------------------- /Arrays/Array_Leaders_Finder/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Array_Leaders_Finder/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Leaders_Finder/Solution/main.c -------------------------------------------------------------------------------- /Arrays/Array_Leaders_Finder/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Leaders_Finder/a.out -------------------------------------------------------------------------------- /Arrays/Array_Leaders_Finder/sid_solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Leaders_Finder/sid_solution.c -------------------------------------------------------------------------------- /Arrays/Array_Product_Excluding_Self_Calculator/Array_Product_Excluding_Self_Calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Product_Excluding_Self_Calculator/Array_Product_Excluding_Self_Calculator.txt -------------------------------------------------------------------------------- /Arrays/Array_Product_Excluding_Self_Calculator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Array_Product_Excluding_Self_Calculator/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Product_Excluding_Self_Calculator/Solution/main.c -------------------------------------------------------------------------------- /Arrays/Array_Right_Rotator/Array_Right_Rotator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Array_Right_Rotator/Array_Right_Rotator.txt -------------------------------------------------------------------------------- /Arrays/Array_Right_Rotator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Divisible_Sum_Pairs_Checker/Divisible_Sum_Pairs_Checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Divisible_Sum_Pairs_Checker/Divisible_Sum_Pairs_Checker.txt -------------------------------------------------------------------------------- /Arrays/Divisible_Sum_Pairs_Checker/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Duplicate_Number_Detector/Duplicate_Number_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Duplicate_Number_Detector/Duplicate_Number_Detector.txt -------------------------------------------------------------------------------- /Arrays/Duplicate_Number_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Duplicate_Remover_without_Libraries/Duplicate_Remover_without_Libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Duplicate_Remover_without_Libraries/Duplicate_Remover_without_Libraries.txt -------------------------------------------------------------------------------- /Arrays/Duplicate_Remover_without_Libraries/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Equilibrium_Index_Finder/Equilibrium_Index_Finder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Equilibrium_Index_Finder/Equilibrium_Index_Finder.txt -------------------------------------------------------------------------------- /Arrays/Equilibrium_Index_Finder/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Kth_Max-Min_Element_Retriever/Kth_Max-Min_Element_Retriever.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Kth_Max-Min_Element_Retriever/Kth_Max-Min_Element_Retriever.txt -------------------------------------------------------------------------------- /Arrays/Kth_Max-Min_Element_Retriever/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Longest_Consecutive_Subsequence_Locator/Longest_Consecutive_Subsequence_Locator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Longest_Consecutive_Subsequence_Locator/Longest_Consecutive_Subsequence_Locator.txt -------------------------------------------------------------------------------- /Arrays/Longest_Consecutive_Subsequence_Locator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Majority_Element_Identifier/Majority_Element_Identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Majority_Element_Identifier/Majority_Element_Identifier.txt -------------------------------------------------------------------------------- /Arrays/Majority_Element_Identifier/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Max-Min_Finder_in_an_Unsorted_Array/Max-Min_Finder_in_an_Unsorted_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Max-Min_Finder_in_an_Unsorted_Array/Max-Min_Finder_in_an_Unsorted_Array.txt -------------------------------------------------------------------------------- /Arrays/Max-Min_Finder_in_an_Unsorted_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Minimum_Sum_Subarray_Finder/Minimum_Sum_Subarray_Finder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Minimum_Sum_Subarray_Finder/Minimum_Sum_Subarray_Finder.txt -------------------------------------------------------------------------------- /Arrays/Minimum_Sum_Subarray_Finder/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Missing_Number_Finder_in_a_1-to-500_Sequence/Missing_Number_Finder_in_a_1-to-500_Sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Missing_Number_Finder_in_a_1-to-500_Sequence/Missing_Number_Finder_in_a_1-to-500_Sequence.txt -------------------------------------------------------------------------------- /Arrays/Missing_Number_Finder_in_a_1-to-500_Sequence/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Multiple_Duplicates_Identifier/Multiple_Duplicates_Identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Multiple_Duplicates_Identifier/Multiple_Duplicates_Identifier.txt -------------------------------------------------------------------------------- /Arrays/Multiple_Duplicates_Identifier/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Occurrence_Counter_in_a_Sorted_Array/Occurrence_Counter_in_a_Sorted_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Occurrence_Counter_in_a_Sorted_Array/Occurrence_Counter_in_a_Sorted_Array.txt -------------------------------------------------------------------------------- /Arrays/Occurrence_Counter_in_a_Sorted_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Peak_Element_Identifier/Peak_Element_Identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Peak_Element_Identifier/Peak_Element_Identifier.txt -------------------------------------------------------------------------------- /Arrays/Peak_Element_Identifier/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Positive-Negative_Rearranger/Positive-Negative_Rearranger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Positive-Negative_Rearranger/Positive-Negative_Rearranger.txt -------------------------------------------------------------------------------- /Arrays/Positive-Negative_Rearranger/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Quicksort_Array_Sorter/Quicksort_Array_Sorter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Quicksort_Array_Sorter/Quicksort_Array_Sorter.txt -------------------------------------------------------------------------------- /Arrays/Quicksort_Array_Sorter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Self-Referential_Array_Transformer/Self-Referential_Array_Transformer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Self-Referential_Array_Transformer/Self-Referential_Array_Transformer.txt -------------------------------------------------------------------------------- /Arrays/Self-Referential_Array_Transformer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Sorted_Arrays_Merger/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Sorted_Arrays_Merger/Sorted_Arrays_Merger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Sorted_Arrays_Merger/Sorted_Arrays_Merger.txt -------------------------------------------------------------------------------- /Arrays/Target_Sum_Pairs_Locator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Target_Sum_Pairs_Locator/Target_Sum_Pairs_Locator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Target_Sum_Pairs_Locator/Target_Sum_Pairs_Locator.txt -------------------------------------------------------------------------------- /Arrays/Two_Repeating_Elements_Finder/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Two_Repeating_Elements_Finder/Two_Repeating_Elements_Finder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Two_Repeating_Elements_Finder/Two_Repeating_Elements_Finder.txt -------------------------------------------------------------------------------- /Arrays/Zero-Mover_to_the_Left/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Zero-Mover_to_the_Left/Zero-Mover_to_the_Left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Zero-Mover_to_the_Left/Zero-Mover_to_the_Left.txt -------------------------------------------------------------------------------- /Arrays/Zero_Sum_Subarray_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Arrays/Zero_Sum_Subarray_Detector/Zero_Sum_Subarray_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Arrays/Zero_Sum_Subarray_Detector/Zero_Sum_Subarray_Detector.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Calculate_a_power_b_Using_Bit_Manipulation/Calculate_a_power_b_Using_Bit_Manipulation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Calculate_a_power_b_Using_Bit_Manipulation/Calculate_a_power_b_Using_Bit_Manipulation.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Calculate_a_power_b_Using_Bit_Manipulation/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Calculate_a_power_b_Using_Bit_Manipulation/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Calculate_a_power_b_Using_Bit_Manipulation/Solution/main.c -------------------------------------------------------------------------------- /Bit_Manipulations/Check_for_Alternate_Bits/Check_for_Alternate_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Check_for_Alternate_Bits/Check_for_Alternate_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Check_for_Alternate_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Check_for_Alternate_Bits/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Check_for_Alternate_Bits/Solution/main.c -------------------------------------------------------------------------------- /Bit_Manipulations/Check_if_Binary_Representation_of_a_Number_is_Palindrome/Check_if_Binary_Representation_of_a_Number_is_Palindrome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Check_if_Binary_Representation_of_a_Number_is_Palindrome/Check_if_Binary_Representation_of_a_Number_is_Palindrome.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Check_if_Binary_Representation_of_a_Number_is_Palindrome/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Check_if_Number_is_Multiple_of_3/Check_if_Number_is_Multiple_of_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Check_if_Number_is_Multiple_of_3/Check_if_Number_is_Multiple_of_3.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Check_if_Number_is_Multiple_of_3/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Clear_Bits_From_MSB_to_i/Clear_Bits_From_MSB_to_i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Clear_Bits_From_MSB_to_i/Clear_Bits_From_MSB_to_i.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Clear_Bits_From_MSB_to_i/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Convert_Decimal_to_Binary/Convert_Decimal_to_Binary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Convert_Decimal_to_Binary/Convert_Decimal_to_Binary.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Convert_Decimal_to_Binary/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Count_Number_of_Flips_to_Convert_A_to_B/Count_Number_of_Flips_to_Convert_A_to_B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Count_Number_of_Flips_to_Convert_A_to_B/Count_Number_of_Flips_to_Convert_A_to_B.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Count_Number_of_Flips_to_Convert_A_to_B/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Count_Set_Bits/Count_Set_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Count_Set_Bits/Count_Set_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Count_Set_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Count_Set_Bits/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Count_Set_Bits/Solution/main.c -------------------------------------------------------------------------------- /Bit_Manipulations/Detecting_Power_of_Two/Detecting_Power_of_Two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Detecting_Power_of_Two/Detecting_Power_of_Two.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Detecting_Power_of_Two/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Determine_if_Two_Integers_Have_Opposite_Signs/Determine_if_Two_Integers_Have_Opposite_Signs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Determine_if_Two_Integers_Have_Opposite_Signs/Determine_if_Two_Integers_Have_Opposite_Signs.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Determine_if_Two_Integers_Have_Opposite_Signs/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Extract_n_Bits/Extract_n_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Extract_n_Bits/Extract_n_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Extract_n_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Find_Parity_of_a_Number/Find_Parity_of_a_Number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Find_Parity_of_a_Number/Find_Parity_of_a_Number.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Find_Parity_of_a_Number/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Find_Two_Unique_Numbers_in_Array/Find_Two_Unique_Numbers_in_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Find_Two_Unique_Numbers_in_Array/Find_Two_Unique_Numbers_in_Array.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Find_Two_Unique_Numbers_in_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Find_a_Unique_Number_in_an_Array/Find_a_Unique_Number_in_an_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Find_a_Unique_Number_in_an_Array/Find_a_Unique_Number_in_an_Array.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Find_a_Unique_Number_in_an_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Generate_All_Possible_Combinations_of_n_Bits/Generate_All_Possible_Combinations_of_n_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Generate_All_Possible_Combinations_of_n_Bits/Generate_All_Possible_Combinations_of_n_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Generate_All_Possible_Combinations_of_n_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Implement_Bitwise_Right_Shift/Implement_Bitwise_Right_Shift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Implement_Bitwise_Right_Shift/Implement_Bitwise_Right_Shift.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Implement_Bitwise_Right_Shift/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Implement_XOR_Without_Using_XOR_Operator/Implement_XOR_Without_Using_XOR_Operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Implement_XOR_Without_Using_XOR_Operator/Implement_XOR_Without_Using_XOR_Operator.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Implement_XOR_Without_Using_XOR_Operator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Isolate_the_Rightmost_Set_Bit/Isolate_the_Rightmost_Set_Bit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Isolate_the_Rightmost_Set_Bit/Isolate_the_Rightmost_Set_Bit.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Isolate_the_Rightmost_Set_Bit/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Mask_Certain_Bits/Mask_Certain_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Mask_Certain_Bits/Mask_Certain_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Mask_Certain_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Reverse_Bits_in_a_Byte/Reverse_Bits_in_a_Byte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Reverse_Bits_in_a_Byte/Reverse_Bits_in_a_Byte.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Reverse_Bits_in_a_Byte/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Rotate_Bits/Rotate_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Rotate_Bits/Rotate_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Rotate_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Set_Bits_Without_Using_Arithmetic_Operations/Set_Bits_Without_Using_Arithmetic_Operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Set_Bits_Without_Using_Arithmetic_Operations/Set_Bits_Without_Using_Arithmetic_Operations.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Set_Bits_Without_Using_Arithmetic_Operations/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Single_Number_in_Array/Single_Number_in_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Single_Number_in_Array/Single_Number_in_Array.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Single_Number_in_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Swap_Odd_and_Even_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Swap_Odd_and_Even_Bits/Swap_Odd_and_Even_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Swap_Odd_and_Even_Bits/Swap_Odd_and_Even_Bits.txt -------------------------------------------------------------------------------- /Bit_Manipulations/Toggle_3rd_and_5th_Bits/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Bit_Manipulations/Toggle_3rd_and_5th_Bits/Toggle_3rd_and_5th_Bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Bit_Manipulations/Toggle_3rd_and_5th_Bits/Toggle_3rd_and_5th_Bits.txt -------------------------------------------------------------------------------- /Linked_List/Add_Numbers_Represented_by_Lists/Add_Numbers_Represented_by_Lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Add_Numbers_Represented_by_Lists/Add_Numbers_Represented_by_Lists.txt -------------------------------------------------------------------------------- /Linked_List/Add_Numbers_Represented_by_Lists/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Add_Numbers_Represented_by_Lists/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Add_Numbers_Represented_by_Lists/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Clone_Linked_List_With_Random_Pointer/Clone_Linked_List_With_Random_Pointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Clone_Linked_List_With_Random_Pointer/Clone_Linked_List_With_Random_Pointer.txt -------------------------------------------------------------------------------- /Linked_List/Clone_Linked_List_With_Random_Pointer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Clone_Linked_List_With_Random_Pointer/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Clone_Linked_List_With_Random_Pointer/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Common_Ancestor_in_Binary_Tree_Doubly_Linked_List/Common_Ancestor_in_Binary_Tree_Doubly_Linked_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Common_Ancestor_in_Binary_Tree_Doubly_Linked_List/Common_Ancestor_in_Binary_Tree_Doubly_Linked_List.txt -------------------------------------------------------------------------------- /Linked_List/Common_Ancestor_in_Binary_Tree_Doubly_Linked_List/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Compare_Strings_As_Linked_Lists/Compare_Strings_As_Linked_Lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Compare_Strings_As_Linked_Lists/Compare_Strings_As_Linked_Lists.txt -------------------------------------------------------------------------------- /Linked_List/Compare_Strings_As_Linked_Lists/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Compare_Strings_As_Linked_Lists/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Compare_Strings_As_Linked_Lists/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Convert_Binary_Number_to_Integer/Convert_Binary_Number_to_Integer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Convert_Binary_Number_to_Integer/Convert_Binary_Number_to_Integer.txt -------------------------------------------------------------------------------- /Linked_List/Convert_Binary_Number_to_Integer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Convert_Binary_Number_to_Integer/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Convert_Binary_Number_to_Integer/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Delete_Alternate_Nodes/Delete_Alternate_Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Delete_Alternate_Nodes/Delete_Alternate_Nodes.txt -------------------------------------------------------------------------------- /Linked_List/Delete_Alternate_Nodes/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Delete_Alternate_Nodes/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Delete_Alternate_Nodes/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Detect_And_Remove_Loop/Detect_And_Remove_Loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Detect_And_Remove_Loop/Detect_And_Remove_Loop.txt -------------------------------------------------------------------------------- /Linked_List/Detect_And_Remove_Loop/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Detect_And_Remove_Loop/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Detect_And_Remove_Loop/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Detect_Cycle_in_LinkedList/Detect_Cycle_in_LinkedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Detect_Cycle_in_LinkedList/Detect_Cycle_in_LinkedList.txt -------------------------------------------------------------------------------- /Linked_List/Detect_Cycle_in_LinkedList/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Find_Middle_Element/Find_Middle_Element.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Find_Middle_Element/Find_Middle_Element.txt -------------------------------------------------------------------------------- /Linked_List/Find_Middle_Element/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Find_Middle_Element/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Find_Middle_Element/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Find_Nth_Node_From_End/Find_Nth_Node_From_End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Find_Nth_Node_From_End/Find_Nth_Node_From_End.txt -------------------------------------------------------------------------------- /Linked_List/Find_Nth_Node_From_End/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Find_Nth_Node_From_End/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Find_Nth_Node_From_End/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Flatten_Multi_Level_Linked_List/Flatten_Multi_Level_Linked_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Flatten_Multi_Level_Linked_List/Flatten_Multi_Level_Linked_List.txt -------------------------------------------------------------------------------- /Linked_List/Flatten_Multi_Level_Linked_List/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Intersection_Point_Two_Lists/Intersection_Point_Two_Lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Intersection_Point_Two_Lists/Intersection_Point_Two_Lists.txt -------------------------------------------------------------------------------- /Linked_List/Intersection_Point_Two_Lists/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Intersection_Point_Two_Lists/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Intersection_Point_Two_Lists/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Length_of_Linked_List/Length_of_Linked_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Length_of_Linked_List/Length_of_Linked_List.txt -------------------------------------------------------------------------------- /Linked_List/Length_of_Linked_List/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Length_of_Linked_List/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Length_of_Linked_List/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Linked_List_Is_Palindrome/Linked_List_Is_Palindrome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Linked_List_Is_Palindrome/Linked_List_Is_Palindrome.txt -------------------------------------------------------------------------------- /Linked_List/Linked_List_Is_Palindrome/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Linked_List_Is_Palindrome/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Linked_List_Is_Palindrome/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Merge_Sort_on_Linked_List/Merge_Sort_on_Linked_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Merge_Sort_on_Linked_List/Merge_Sort_on_Linked_List.txt -------------------------------------------------------------------------------- /Linked_List/Merge_Sort_on_Linked_List/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Merge_Two_Sorted_Lists/Merge_Two_Sorted_Lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Merge_Two_Sorted_Lists/Merge_Two_Sorted_Lists.txt -------------------------------------------------------------------------------- /Linked_List/Merge_Two_Sorted_Lists/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Merge_Two_Sorted_Lists/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Merge_Two_Sorted_Lists/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Move_Last_Element_To_Front/Move_Last_Element_To_Front.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Move_Last_Element_To_Front/Move_Last_Element_To_Front.txt -------------------------------------------------------------------------------- /Linked_List/Move_Last_Element_To_Front/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Move_Last_Element_To_Front/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Move_Last_Element_To_Front/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Pairwise_Swap_Elements/Pairwise_Swap_Elements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Pairwise_Swap_Elements/Pairwise_Swap_Elements.txt -------------------------------------------------------------------------------- /Linked_List/Pairwise_Swap_Elements/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Pairwise_Swap_Elements/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Pairwise_Swap_Elements/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Partition_Linked_List_Around_Value/Partition_Linked_List_Around_Value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Partition_Linked_List_Around_Value/Partition_Linked_List_Around_Value.txt -------------------------------------------------------------------------------- /Linked_List/Partition_Linked_List_Around_Value/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Partition_Linked_List_Around_Value/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Partition_Linked_List_Around_Value/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Remove_Duplicates_Unsorted/Remove_Duplicates_Unsorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Remove_Duplicates_Unsorted/Remove_Duplicates_Unsorted.txt -------------------------------------------------------------------------------- /Linked_List/Remove_Duplicates_Unsorted/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Remove_Nodes_of_Specific_Value/Remove_Nodes_of_Specific_Value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Remove_Nodes_of_Specific_Value/Remove_Nodes_of_Specific_Value.txt -------------------------------------------------------------------------------- /Linked_List/Remove_Nodes_of_Specific_Value/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Remove_Nodes_of_Specific_Value/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Remove_Nodes_of_Specific_Value/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List/Reverse_Linked_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Reverse_Linked_List/Reverse_Linked_List.txt -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Reverse_Linked_List/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List_No_Recursion/Reverse_Linked_List_No_Recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Reverse_Linked_List_No_Recursion/Reverse_Linked_List_No_Recursion.txt -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List_No_Recursion/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Reverse_Linked_List_No_Recursion/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Reverse_Linked_List_No_Recursion/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Segregate_Even_Odd_Nodes/Segregate_Even_Odd_Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Segregate_Even_Odd_Nodes/Segregate_Even_Odd_Nodes.txt -------------------------------------------------------------------------------- /Linked_List/Segregate_Even_Odd_Nodes/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Segregate_Even_Odd_Nodes/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Segregate_Even_Odd_Nodes/Solution/main.c -------------------------------------------------------------------------------- /Linked_List/Sum_of_Linked_Lists_Using_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linked_List/Sum_of_Linked_Lists_Using_Stack/Sum_of_Linked_Lists_Using_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linked_List/Sum_of_Linked_Lists_Using_Stack/Sum_of_Linked_Lists_Using_Stack.txt -------------------------------------------------------------------------------- /Linux_Internals/CPU_Information_Fetcher/CPU_Information_Fetcher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/CPU_Information_Fetcher/CPU_Information_Fetcher.txt -------------------------------------------------------------------------------- /Linux_Internals/CPU_Information_Fetcher/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/CPU_Scheduling_Algorithm/CPU_Scheduling_Algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/CPU_Scheduling_Algorithm/CPU_Scheduling_Algorithm.txt -------------------------------------------------------------------------------- /Linux_Internals/CPU_Scheduling_Algorithm/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Command_line_Argument_Parser/Command_line_Argument_Parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Command_line_Argument_Parser/Command_line_Argument_Parser.txt -------------------------------------------------------------------------------- /Linux_Internals/Command_line_Argument_Parser/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Custom_Signal_Handling/Custom_Signal_Handling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Custom_Signal_Handling/Custom_Signal_Handling.txt -------------------------------------------------------------------------------- /Linux_Internals/Custom_Signal_Handling/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Custom_init_Process/Custom_init_Process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Custom_init_Process/Custom_init_Process.txt -------------------------------------------------------------------------------- /Linux_Internals/Custom_init_Process/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Custom_malloc_free/Custom_malloc_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Custom_malloc_free/Custom_malloc_free.txt -------------------------------------------------------------------------------- /Linux_Internals/Custom_malloc_free/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Custom_ps_Command/Custom_ps_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Custom_ps_Command/Custom_ps_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Custom_ps_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/File_Copy_Program/File_Copy_Program.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/File_Copy_Program/File_Copy_Program.txt -------------------------------------------------------------------------------- /Linux_Internals/File_Copy_Program/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/File_Copy_Program/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/File_Copy_Program/Solution/main.c -------------------------------------------------------------------------------- /Linux_Internals/Filesystem_Traversal_opendir_readdir/Filesystem_Traversal_opendir_readdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Filesystem_Traversal_opendir_readdir/Filesystem_Traversal_opendir_readdir.txt -------------------------------------------------------------------------------- /Linux_Internals/Filesystem_Traversal_opendir_readdir/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_Priority_Inversion_Handling/Implement_Priority_Inversion_Handling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_Priority_Inversion_Handling/Implement_Priority_Inversion_Handling.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_Priority_Inversion_Handling/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_Simple_Shell/Implement_Simple_Shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_Simple_Shell/Implement_Simple_Shell.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_Simple_Shell/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_chmod_Command/Implement_chmod_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_chmod_Command/Implement_chmod_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_chmod_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_ping_Command/Implement_ping_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_ping_Command/Implement_ping_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_ping_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_tail_Command/Implement_tail_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_tail_Command/Implement_tail_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_tail_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_watch_Command/Implement_watch_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_watch_Command/Implement_watch_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_watch_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Implement_whois_Command/Implement_whois_Command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Implement_whois_Command/Implement_whois_Command.txt -------------------------------------------------------------------------------- /Linux_Internals/Implement_whois_Command/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Mutex_based_File_Access/Mutex_based_File_Access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Mutex_based_File_Access/Mutex_based_File_Access.txt -------------------------------------------------------------------------------- /Linux_Internals/Mutex_based_File_Access/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Priority_Inversion_Problem/Priority_Inversion_Problem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Priority_Inversion_Problem/Priority_Inversion_Problem.txt -------------------------------------------------------------------------------- /Linux_Internals/Priority_Inversion_Problem/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Process_Forking_Waiting/Process_Forking_Waiting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Process_Forking_Waiting/Process_Forking_Waiting.txt -------------------------------------------------------------------------------- /Linux_Internals/Process_Forking_Waiting/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Semaphore_based_Producer_Consumer/Semaphore_based_Producer_Consumer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Semaphore_based_Producer_Consumer/Semaphore_based_Producer_Consumer.txt -------------------------------------------------------------------------------- /Linux_Internals/Semaphore_based_Producer_Consumer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Terminal_Multiplexer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Terminal_Multiplexer/Terminal_Multiplexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Terminal_Multiplexer/Terminal_Multiplexer.txt -------------------------------------------------------------------------------- /Linux_Internals/Thread_Creation_Synchronization/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Thread_Creation_Synchronization/Thread_Creation_Synchronization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Thread_Creation_Synchronization/Thread_Creation_Synchronization.txt -------------------------------------------------------------------------------- /Linux_Internals/User_Space_File_Reader/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/User_Space_File_Reader/User_Space_File_Reader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/User_Space_File_Reader/User_Space_File_Reader.txt -------------------------------------------------------------------------------- /Linux_Internals/User_Space_to_Kernel_Space_Communication/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/User_Space_to_Kernel_Space_Communication/User_Space_to_Kernel_Space_Communication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/User_Space_to_Kernel_Space_Communication/User_Space_to_Kernel_Space_Communication.txt -------------------------------------------------------------------------------- /Linux_Internals/Zero_Copy_Data_Transfer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Linux_Internals/Zero_Copy_Data_Transfer/Zero_Copy_Data_Transfer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Linux_Internals/Zero_Copy_Data_Transfer/Zero_Copy_Data_Transfer.txt -------------------------------------------------------------------------------- /Memory_Management/Custom_strdup_Function/Custom_strdup_Function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Custom_strdup_Function/Custom_strdup_Function.txt -------------------------------------------------------------------------------- /Memory_Management/Custom_strdup_Function/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Custom_strdup_Function/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Custom_strdup_Function/Solution/main.c -------------------------------------------------------------------------------- /Memory_Management/Dynamic_Array/Dynamic_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Dynamic_Array/Dynamic_Array.txt -------------------------------------------------------------------------------- /Memory_Management/Dynamic_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Dynamic_Array/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Dynamic_Array/Solution/main.c -------------------------------------------------------------------------------- /Memory_Management/Fragmentation_Detector/Fragmentation_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Fragmentation_Detector/Fragmentation_Detector.txt -------------------------------------------------------------------------------- /Memory_Management/Fragmentation_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Garbage_Collector_Simulator/Garbage_Collector_Simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Garbage_Collector_Simulator/Garbage_Collector_Simulator.txt -------------------------------------------------------------------------------- /Memory_Management/Garbage_Collector_Simulator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Garbage_Collector_Simulator/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Garbage_Collector_Simulator/Solution/main.c -------------------------------------------------------------------------------- /Memory_Management/Heap_Metadata_Inspector/Heap_Metadata_Inspector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Heap_Metadata_Inspector/Heap_Metadata_Inspector.txt -------------------------------------------------------------------------------- /Memory_Management/Heap_Metadata_Inspector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory-Bound_Priority_Queue/Memory-Bound_Priority_Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory-Bound_Priority_Queue/Memory-Bound_Priority_Queue.txt -------------------------------------------------------------------------------- /Memory_Management/Memory-Bound_Priority_Queue/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory-Bound_Priority_Queue/Solution/pq_fixed_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory-Bound_Priority_Queue/Solution/pq_fixed_heap.c -------------------------------------------------------------------------------- /Memory_Management/Memory-Mapped_Circular_Buffer/Memory-Mapped_Circular_Buffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory-Mapped_Circular_Buffer/Memory-Mapped_Circular_Buffer.txt -------------------------------------------------------------------------------- /Memory_Management/Memory-Mapped_Circular_Buffer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Access_Logger/Memory_Access_Logger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Access_Logger/Memory_Access_Logger.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Access_Logger/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Alignment_Checker/Memory_Alignment_Checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Alignment_Checker/Memory_Alignment_Checker.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Alignment_Checker/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Defragmenter/Memory_Defragmenter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Defragmenter/Memory_Defragmenter.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Defragmenter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Footprint_Analyzer/Memory_Footprint_Analyzer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Footprint_Analyzer/Memory_Footprint_Analyzer.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Footprint_Analyzer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Initialization_Library/Memory_Initialization_Library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Initialization_Library/Memory_Initialization_Library.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Initialization_Library/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Leak_Detector/Memory_Leak_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Leak_Detector/Memory_Leak_Detector.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Leak_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Offset_Calculator/Memory_Offset_Calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Offset_Calculator/Memory_Offset_Calculator.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Offset_Calculator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Overlay_Management/Memory_Overlay_Management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Overlay_Management/Memory_Overlay_Management.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Overlay_Management/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Pool/Memory_Pool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Pool/Memory_Pool.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Pool/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Safety_Checker/Memory_Safety_Checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Safety_Checker/Memory_Safety_Checker.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Safety_Checker/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Memory_Statistics_Reporter/Memory_Statistics_Reporter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Memory_Statistics_Reporter/Memory_Statistics_Reporter.txt -------------------------------------------------------------------------------- /Memory_Management/Memory_Statistics_Reporter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Object_Serialization/Object_Serialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Object_Serialization/Object_Serialization.txt -------------------------------------------------------------------------------- /Memory_Management/Object_Serialization/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Segmented_Memory_Allocator/Segmented_Memory_Allocator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Segmented_Memory_Allocator/Segmented_Memory_Allocator.txt -------------------------------------------------------------------------------- /Memory_Management/Segmented_Memory_Allocator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Slab_Allocator/Slab_Allocator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Slab_Allocator/Slab_Allocator.txt -------------------------------------------------------------------------------- /Memory_Management/Slab_Allocator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Stack-based_Memory_Allocator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Stack-based_Memory_Allocator/Stack-based_Memory_Allocator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Stack-based_Memory_Allocator/Stack-based_Memory_Allocator.txt -------------------------------------------------------------------------------- /Memory_Management/Stack_Overflow_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Stack_Overflow_Detector/Stack_Overflow_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Stack_Overflow_Detector/Stack_Overflow_Detector.txt -------------------------------------------------------------------------------- /Memory_Management/Virtual_Memory_Simulator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Virtual_Memory_Simulator/Virtual_Memory_Simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Virtual_Memory_Simulator/Virtual_Memory_Simulator.txt -------------------------------------------------------------------------------- /Memory_Management/Write-Once_Memory_Simulator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Memory_Management/Write-Once_Memory_Simulator/Write-Once_Memory_Simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Memory_Management/Write-Once_Memory_Simulator/Write-Once_Memory_Simulator.txt -------------------------------------------------------------------------------- /Pointers/Calculate_Dot_Product_Of_Vectors/Calculate_Dot_Product_Of_Vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Calculate_Dot_Product_Of_Vectors/Calculate_Dot_Product_Of_Vectors.txt -------------------------------------------------------------------------------- /Pointers/Calculate_Dot_Product_Of_Vectors/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Calculate_Dot_Product_Of_Vectors/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Calculate_Dot_Product_Of_Vectors/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Check_Pointers_Point_To_Same_Array/Check_Pointers_Point_To_Same_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Check_Pointers_Point_To_Same_Array/Check_Pointers_Point_To_Same_Array.txt -------------------------------------------------------------------------------- /Pointers/Check_Pointers_Point_To_Same_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Check_String_Palindrome/Check_String_Palindrome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Check_String_Palindrome/Check_String_Palindrome.txt -------------------------------------------------------------------------------- /Pointers/Check_String_Palindrome/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Check_String_Palindrome/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Check_String_Palindrome/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Check_String_Prefix/Check_String_Prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Check_String_Prefix/Check_String_Prefix.txt -------------------------------------------------------------------------------- /Pointers/Check_String_Prefix/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Check_String_Prefix/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Check_String_Prefix/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Concatenate_Strings_Without_Lib/Concatenate_Strings_Without_Lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Concatenate_Strings_Without_Lib/Concatenate_Strings_Without_Lib.txt -------------------------------------------------------------------------------- /Pointers/Concatenate_Strings_Without_Lib/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Concatenate_Strings_Without_Lib/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Concatenate_Strings_Without_Lib/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Convert_String_To_Lowercase/Convert_String_To_Lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Convert_String_To_Lowercase/Convert_String_To_Lowercase.txt -------------------------------------------------------------------------------- /Pointers/Convert_String_To_Lowercase/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Convert_String_To_Lowercase/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Convert_String_To_Lowercase/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Count_Array_Elements_Without_Loop/Count_Array_Elements_Without_Loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Count_Array_Elements_Without_Loop/Count_Array_Elements_Without_Loop.txt -------------------------------------------------------------------------------- /Pointers/Count_Array_Elements_Without_Loop/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Count_Array_Elements_Without_Loop/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Count_Array_Elements_Without_Loop/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Custom_Memcpy_Function/Custom_Memcpy_Function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Custom_Memcpy_Function/Custom_Memcpy_Function.txt -------------------------------------------------------------------------------- /Pointers/Custom_Memcpy_Function/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Custom_Memcpy_Function/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Custom_Memcpy_Function/Solution/main.c -------------------------------------------------------------------------------- /Pointers/Custom_Strtok_Function/Custom_Strtok_Function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Custom_Strtok_Function/Custom_Strtok_Function.txt -------------------------------------------------------------------------------- /Pointers/Custom_Strtok_Function/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Detect_Pointer_Out_Of_Bounds/Detect_Pointer_Out_Of_Bounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Detect_Pointer_Out_Of_Bounds/Detect_Pointer_Out_Of_Bounds.txt -------------------------------------------------------------------------------- /Pointers/Detect_Pointer_Out_Of_Bounds/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_Array_Intersection/Find_Array_Intersection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_Array_Intersection/Find_Array_Intersection.txt -------------------------------------------------------------------------------- /Pointers/Find_Array_Intersection/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_Common_Elements_In_Sorted_Arrays/Find_Common_Elements_In_Sorted_Arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_Common_Elements_In_Sorted_Arrays/Find_Common_Elements_In_Sorted_Arrays.txt -------------------------------------------------------------------------------- /Pointers/Find_Common_Elements_In_Sorted_Arrays/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_Data_Type_Size_Without_Sizeof/Find_Data_Type_Size_Without_Sizeof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_Data_Type_Size_Without_Sizeof/Find_Data_Type_Size_Without_Sizeof.txt -------------------------------------------------------------------------------- /Pointers/Find_Data_Type_Size_Without_Sizeof/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_First_Non_Repeated_Character/Find_First_Non_Repeated_Character.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_First_Non_Repeated_Character/Find_First_Non_Repeated_Character.txt -------------------------------------------------------------------------------- /Pointers/Find_First_Non_Repeated_Character/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_Linked_List_Length/Find_Linked_List_Length.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_Linked_List_Length/Find_Linked_List_Length.txt -------------------------------------------------------------------------------- /Pointers/Find_Linked_List_Length/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Find_Overlapping_Elements_In_Arrays/Find_Overlapping_Elements_In_Arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Find_Overlapping_Elements_In_Arrays/Find_Overlapping_Elements_In_Arrays.txt -------------------------------------------------------------------------------- /Pointers/Find_Overlapping_Elements_In_Arrays/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Flatten_2D_Array_To_1D/Flatten_2D_Array_To_1D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Flatten_2D_Array_To_1D/Flatten_2D_Array_To_1D.txt -------------------------------------------------------------------------------- /Pointers/Flatten_2D_Array_To_1D/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Memory_Leak_Detector/Memory_Leak_Detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Memory_Leak_Detector/Memory_Leak_Detector.txt -------------------------------------------------------------------------------- /Pointers/Memory_Leak_Detector/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Merge_Two_Sorted_Arrays/Merge_Two_Sorted_Arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Merge_Two_Sorted_Arrays/Merge_Two_Sorted_Arrays.txt -------------------------------------------------------------------------------- /Pointers/Merge_Two_Sorted_Arrays/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Move_2D_Point/Move_2D_Point.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Move_2D_Point/Move_2D_Point.txt -------------------------------------------------------------------------------- /Pointers/Move_2D_Point/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Rotate_Array_By_K_Elements/Rotate_Array_By_K_Elements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Rotate_Array_By_K_Elements/Rotate_Array_By_K_Elements.txt -------------------------------------------------------------------------------- /Pointers/Rotate_Array_By_K_Elements/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Segregate_Even_And_Odd_Using_Pointers/Segregate_Even_And_Odd_Using_Pointers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Segregate_Even_And_Odd_Using_Pointers/Segregate_Even_And_Odd_Using_Pointers.txt -------------------------------------------------------------------------------- /Pointers/Segregate_Even_And_Odd_Using_Pointers/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Split_String_Into_Halves/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Split_String_Into_Halves/Split_String_Into_Halves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Split_String_Into_Halves/Split_String_Into_Halves.txt -------------------------------------------------------------------------------- /Pointers/Swap_Two_Strings_Using_Pointers/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Swap_Two_Strings_Using_Pointers/Swap_Two_Strings_Using_Pointers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Swap_Two_Strings_Using_Pointers/Swap_Two_Strings_Using_Pointers.txt -------------------------------------------------------------------------------- /Pointers/Trim_String_Whitespace/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Pointers/Trim_String_Whitespace/Trim_String_Whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Pointers/Trim_String_Whitespace/Trim_String_Whitespace.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/README.md -------------------------------------------------------------------------------- /Searching/Binary_search_recursive/Binary_search_recursive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Binary_search_recursive/Binary_search_recursive.txt -------------------------------------------------------------------------------- /Searching/Binary_search_recursive/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Binary_search_recursive/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Binary_search_recursive/Solution/main.c -------------------------------------------------------------------------------- /Searching/Binary_search_recursive/Solution/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Binary_search_recursive/Solution/main1.c -------------------------------------------------------------------------------- /Searching/Count_array_rotations/Count_array_rotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Count_array_rotations/Count_array_rotations.txt -------------------------------------------------------------------------------- /Searching/Count_array_rotations/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Count_array_rotations/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Count_array_rotations/Solution/main.c -------------------------------------------------------------------------------- /Searching/Count_number_occurrences/Count_number_occurrences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Count_number_occurrences/Count_number_occurrences.txt -------------------------------------------------------------------------------- /Searching/Count_number_occurrences/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Count_number_occurrences/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Count_number_occurrences/Solution/main.c -------------------------------------------------------------------------------- /Searching/Exponential_search/Exponential_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Exponential_search/Exponential_search.txt -------------------------------------------------------------------------------- /Searching/Exponential_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Fibonacci_search/Fibonacci_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Fibonacci_search/Fibonacci_search.txt -------------------------------------------------------------------------------- /Searching/Fibonacci_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_Kth_max_min/Find_Kth_max_min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_Kth_max_min/Find_Kth_max_min.txt -------------------------------------------------------------------------------- /Searching/Find_Kth_max_min/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_first_last_occurrence/Find_first_last_occurrence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_first_last_occurrence/Find_first_last_occurrence.txt -------------------------------------------------------------------------------- /Searching/Find_first_last_occurrence/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_fixed_point/Find_fixed_point.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_fixed_point/Find_fixed_point.txt -------------------------------------------------------------------------------- /Searching/Find_fixed_point/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_fixed_point/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_fixed_point/Solution/main.c -------------------------------------------------------------------------------- /Searching/Find_majority_element/Find_majority_element.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_majority_element/Find_majority_element.txt -------------------------------------------------------------------------------- /Searching/Find_majority_element/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_missing_number_1_to_N/Find_missing_number_1_to_N.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_missing_number_1_to_N/Find_missing_number_1_to_N.txt -------------------------------------------------------------------------------- /Searching/Find_missing_number_1_to_N/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_peak_element/Find_peak_element.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_peak_element/Find_peak_element.txt -------------------------------------------------------------------------------- /Searching/Find_peak_element/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_repeating_missing/Find_repeating_missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_repeating_missing/Find_repeating_missing.txt -------------------------------------------------------------------------------- /Searching/Find_repeating_missing/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Find_smallest_missing/Find_smallest_missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Find_smallest_missing/Find_smallest_missing.txt -------------------------------------------------------------------------------- /Searching/Find_smallest_missing/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Interpolation_search/Interpolation_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Interpolation_search/Interpolation_search.txt -------------------------------------------------------------------------------- /Searching/Interpolation_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Jump_search/Jump_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Jump_search/Jump_search.txt -------------------------------------------------------------------------------- /Searching/Jump_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_bitonic_array/Search_bitonic_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_bitonic_array/Search_bitonic_array.txt -------------------------------------------------------------------------------- /Searching/Search_bitonic_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_nearly_sorted_array/Search_nearly_sorted_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_nearly_sorted_array/Search_nearly_sorted_array.txt -------------------------------------------------------------------------------- /Searching/Search_nearly_sorted_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_sorted_array/Search_sorted_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_sorted_array/Search_sorted_array.txt -------------------------------------------------------------------------------- /Searching/Search_sorted_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_sorted_array/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_sorted_array/Solution/main.c -------------------------------------------------------------------------------- /Searching/Search_sorted_matrix/Search_sorted_matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_sorted_matrix/Search_sorted_matrix.txt -------------------------------------------------------------------------------- /Searching/Search_sorted_matrix/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_sorted_matrix/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_sorted_matrix/Solution/main.c -------------------------------------------------------------------------------- /Searching/Search_sorted_rotated_array/Search_sorted_rotated_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_sorted_rotated_array/Search_sorted_rotated_array.txt -------------------------------------------------------------------------------- /Searching/Search_sorted_rotated_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_unknown_length_array/Search_unknown_length_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_unknown_length_array/Search_unknown_length_array.txt -------------------------------------------------------------------------------- /Searching/Search_unknown_length_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_unsorted_array/Search_unsorted_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_unsorted_array/Search_unsorted_array.txt -------------------------------------------------------------------------------- /Searching/Search_unsorted_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Search_unsorted_array/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Search_unsorted_array/Solution/main.c -------------------------------------------------------------------------------- /Searching/Sentinel_search/Sentinel_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Sentinel_search/Sentinel_search.txt -------------------------------------------------------------------------------- /Searching/Sentinel_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Ternary_search/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Ternary_search/Ternary_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Ternary_search/Ternary_search.txt -------------------------------------------------------------------------------- /Searching/Two_numbers_sum_N/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Searching/Two_numbers_sum_N/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Two_numbers_sum_N/Solution/main.c -------------------------------------------------------------------------------- /Searching/Two_numbers_sum_N/Two_numbers_sum_N.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Searching/Two_numbers_sum_N/Two_numbers_sum_N.txt -------------------------------------------------------------------------------- /Sorting/Bead_Sort/Bead_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Bead_Sort/Bead_Sort.txt -------------------------------------------------------------------------------- /Sorting/Bead_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Bitonic_Sort/Bitonic_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Bitonic_Sort/Bitonic_Sort.txt -------------------------------------------------------------------------------- /Sorting/Bitonic_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Bogo_Sort/Bogo_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Bogo_Sort/Bogo_Sort.txt -------------------------------------------------------------------------------- /Sorting/Bogo_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Bucket_Sort/Bucket_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Bucket_Sort/Bucket_Sort.txt -------------------------------------------------------------------------------- /Sorting/Bucket_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Cocktail_Sort/Cocktail_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Cocktail_Sort/Cocktail_Sort.txt -------------------------------------------------------------------------------- /Sorting/Cocktail_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Comb_Sort/Comb_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Comb_Sort/Comb_Sort.txt -------------------------------------------------------------------------------- /Sorting/Comb_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Counting_Sort_for_Negative_Numbers/Counting_Sort_for_Negative_Numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Counting_Sort_for_Negative_Numbers/Counting_Sort_for_Negative_Numbers.txt -------------------------------------------------------------------------------- /Sorting/Counting_Sort_for_Negative_Numbers/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Cycle_Sort/Cycle_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Cycle_Sort/Cycle_Sort.txt -------------------------------------------------------------------------------- /Sorting/Cycle_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Dynamic_Gap_Shell_Sort/Dynamic_Gap_Shell_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Dynamic_Gap_Shell_Sort/Dynamic_Gap_Shell_Sort.txt -------------------------------------------------------------------------------- /Sorting/Dynamic_Gap_Shell_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Gnome_Sort/Gnome_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Gnome_Sort/Gnome_Sort.txt -------------------------------------------------------------------------------- /Sorting/Gnome_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Heap_Sort_with_Binary_Max_Heap/Heap_Sort_with_Binary_Max_Heap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Heap_Sort_with_Binary_Max_Heap/Heap_Sort_with_Binary_Max_Heap.txt -------------------------------------------------------------------------------- /Sorting/Heap_Sort_with_Binary_Max_Heap/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/In_Place_Merge_Sort/In_Place_Merge_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/In_Place_Merge_Sort/In_Place_Merge_Sort.txt -------------------------------------------------------------------------------- /Sorting/In_Place_Merge_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Iterative_Quick_Sort/Iterative_Quick_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Iterative_Quick_Sort/Iterative_Quick_Sort.txt -------------------------------------------------------------------------------- /Sorting/Iterative_Quick_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Linked_List_Insertion_Sort/Linked_List_Insertion_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Linked_List_Insertion_Sort/Linked_List_Insertion_Sort.txt -------------------------------------------------------------------------------- /Sorting/Linked_List_Insertion_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Odd_Even_Sort/Odd_Even_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Odd_Even_Sort/Odd_Even_Sort.txt -------------------------------------------------------------------------------- /Sorting/Odd_Even_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Optimized_Bubble_Sort/Optimized_Bubble_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Optimized_Bubble_Sort/Optimized_Bubble_Sort.txt -------------------------------------------------------------------------------- /Sorting/Optimized_Bubble_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Pancake_Sort/Pancake_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Pancake_Sort/Pancake_Sort.txt -------------------------------------------------------------------------------- /Sorting/Pancake_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Patience_Sort/Patience_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Patience_Sort/Patience_Sort.txt -------------------------------------------------------------------------------- /Sorting/Patience_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Permutation_Sort/Permutation_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Permutation_Sort/Permutation_Sort.txt -------------------------------------------------------------------------------- /Sorting/Permutation_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Pigeonhole_Sort/Pigeonhole_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Pigeonhole_Sort/Pigeonhole_Sort.txt -------------------------------------------------------------------------------- /Sorting/Pigeonhole_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Radix_Sort_for_Floating_Points/Radix_Sort_for_Floating_Points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Radix_Sort_for_Floating_Points/Radix_Sort_for_Floating_Points.txt -------------------------------------------------------------------------------- /Sorting/Radix_Sort_for_Floating_Points/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Recursive_Merge_Sort/Recursive_Merge_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Recursive_Merge_Sort/Recursive_Merge_Sort.txt -------------------------------------------------------------------------------- /Sorting/Recursive_Merge_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Sleep_Sort/Sleep_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Sleep_Sort/Sleep_Sort.txt -------------------------------------------------------------------------------- /Sorting/Sleep_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Stooge_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Stooge_Sort/Stooge_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Stooge_Sort/Stooge_Sort.txt -------------------------------------------------------------------------------- /Sorting/Tim_Sort/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Sorting/Tim_Sort/Tim_Sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Sorting/Tim_Sort/Tim_Sort.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Balanced_Parentheses_Stack/Balanced_Parentheses_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Balanced_Parentheses_Stack/Balanced_Parentheses_Stack.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Balanced_Parentheses_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Byte-Packing_Stack/Byte-Packing_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Byte-Packing_Stack/Byte-Packing_Stack.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Byte-Packing_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Circular_Queue/Circular_Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Circular_Queue/Circular_Queue.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Circular_Queue/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Circular_Queue/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Circular_Queue/Solution/main.c -------------------------------------------------------------------------------- /Stacks_and_Queues/Command_Parser/Command_Parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Command_Parser/Command_Parser.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Command_Parser/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Expression_Validator/Expression_Validator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Expression_Validator/Expression_Validator.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Expression_Validator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Function_Call_Logger/Function_Call_Logger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Function_Call_Logger/Function_Call_Logger.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Function_Call_Logger/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Min-Element_Stack/Min-Element_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Min-Element_Stack/Min-Element_Stack.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Min-Element_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Multi-stack_Array/Multi-stack_Array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Multi-stack_Array/Multi-stack_Array.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Multi-stack_Array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Nested_Statement_Counter/Nested_Statement_Counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Nested_Statement_Counter/Nested_Statement_Counter.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Nested_Statement_Counter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Palindrome_Checker/Palindrome_Checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Palindrome_Checker/Palindrome_Checker.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Palindrome_Checker/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Post-order_Traversal_Stack/Post-order_Traversal_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Post-order_Traversal_Stack/Post-order_Traversal_Stack.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Post-order_Traversal_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Priority_Queue_Heap/Priority_Queue_Heap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Priority_Queue_Heap/Priority_Queue_Heap.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Priority_Queue_Heap/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Cache/Queue-based_Cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue-based_Cache/Queue-based_Cache.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Cache/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Logger/Queue-based_Logger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue-based_Logger/Queue-based_Logger.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Logger/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Sequence_Generator/Queue-based_Sequence_Generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue-based_Sequence_Generator/Queue-based_Sequence_Generator.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Sequence_Generator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Text_Filter/Queue-based_Text_Filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue-based_Text_Filter/Queue-based_Text_Filter.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue-based_Text_Filter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue_Two_Priorities/Queue_Two_Priorities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue_Two_Priorities/Queue_Two_Priorities.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue_Two_Priorities/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue_from_Stacks/Queue_from_Stacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Queue_from_Stacks/Queue_from_Stacks.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Queue_from_Stacks/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Radix_Sort_Queue/Radix_Sort_Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Radix_Sort_Queue/Radix_Sort_Queue.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Radix_Sort_Queue/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Recursive_to_Iterative_Converter/Recursive_to_Iterative_Converter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Recursive_to_Iterative_Converter/Recursive_to_Iterative_Converter.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Recursive_to_Iterative_Converter/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack-based_Calculator/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack-based_Calculator/Stack-based_Calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Stack-based_Calculator/Stack-based_Calculator.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack-based_Text_Editor/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack-based_Text_Editor/Stack-based_Text_Editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Stack-based_Text_Editor/Stack-based_Text_Editor.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack_Sorting/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Stack_Sorting/Stack_Sorting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Stack_Sorting/Stack_Sorting.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/String_Message_Queue/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/String_Message_Queue/String_Message_Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/String_Message_Queue/String_Message_Queue.txt -------------------------------------------------------------------------------- /Stacks_and_Queues/Undo_Redo_Stack/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Stacks_and_Queues/Undo_Redo_Stack/Undo_Redo_Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Stacks_and_Queues/Undo_Redo_Stack/Undo_Redo_Stack.txt -------------------------------------------------------------------------------- /Strings/Alphabetically_Encoding_a_String/Alphabetically_Encoding_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Alphabetically_Encoding_a_String/Alphabetically_Encoding_a_String.txt -------------------------------------------------------------------------------- /Strings/Alphabetically_Encoding_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. 2 | -------------------------------------------------------------------------------- /Strings/Alphabetically_Encoding_a_String/Solutions/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Alphabetically_Encoding_a_String/Solutions/main.c -------------------------------------------------------------------------------- /Strings/Checking_Anagrams_Between_Two_Strings/Checking_Anagrams_Between_Two_Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Checking_Anagrams_Between_Two_Strings/Checking_Anagrams_Between_Two_Strings.txt -------------------------------------------------------------------------------- /Strings/Checking_Anagrams_Between_Two_Strings/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Counting_Balanced_Zero-One_Substrings/Counting_Balanced_Zero-One_Substrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Counting_Balanced_Zero-One_Substrings/Counting_Balanced_Zero-One_Substrings.txt -------------------------------------------------------------------------------- /Strings/Counting_Balanced_Zero-One_Substrings/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Counting_Character_Occurrences_in_a_String/Counting_Character_Occurrences_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Counting_Character_Occurrences_in_a_String/Counting_Character_Occurrences_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Counting_Character_Occurrences_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Counting_Character_Occurrences_in_a_String/Solutions/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Counting_Character_Occurrences_in_a_String/Solutions/main.c -------------------------------------------------------------------------------- /Strings/Counting_Substring_Occurrences_in_a_String/Counting_Substring_Occurrences_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Counting_Substring_Occurrences_in_a_String/Counting_Substring_Occurrences_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Counting_Substring_Occurrences_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Counting_Vowels_and_Consonants_in_a_String/Counting_Vowels_and_Consonants_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Counting_Vowels_and_Consonants_in_a_String/Counting_Vowels_and_Consonants_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Counting_Vowels_and_Consonants_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Discovering_the_Longest_Palindromic_Substring/Discovering_the_Longest_Palindromic_Substring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Discovering_the_Longest_Palindromic_Substring/Discovering_the_Longest_Palindromic_Substring.txt -------------------------------------------------------------------------------- /Strings/Discovering_the_Longest_Palindromic_Substring/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Evaluating_Repeated_Substring_Patterns/Evaluating_Repeated_Substring_Patterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Evaluating_Repeated_Substring_Patterns/Evaluating_Repeated_Substring_Patterns.txt -------------------------------------------------------------------------------- /Strings/Evaluating_Repeated_Substring_Patterns/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Evaluating_String_Interleaving/Evaluating_String_Interleaving.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Evaluating_String_Interleaving/Evaluating_String_Interleaving.txt -------------------------------------------------------------------------------- /Strings/Evaluating_String_Interleaving/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Finding_Lexicographically_Minimal_String_Rotation/Finding_Lexicographically_Minimal_String_Rotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Finding_Lexicographically_Minimal_String_Rotation/Finding_Lexicographically_Minimal_String_Rotation.txt -------------------------------------------------------------------------------- /Strings/Finding_Lexicographically_Minimal_String_Rotation/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Finding_the_First_Unique_Character_in_a_String/Finding_the_First_Unique_Character_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Finding_the_First_Unique_Character_in_a_String/Finding_the_First_Unique_Character_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Finding_the_First_Unique_Character_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Finding_the_Most_Frequent_Character/Finding_the_Most_Frequent_Character.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Finding_the_Most_Frequent_Character/Finding_the_Most_Frequent_Character.txt -------------------------------------------------------------------------------- /Strings/Finding_the_Most_Frequent_Character/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Generating_All_String_Permutations/Generating_All_String_Permutations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Generating_All_String_Permutations/Generating_All_String_Permutations.txt -------------------------------------------------------------------------------- /Strings/Generating_All_String_Permutations/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Identifying_Duplicate_Characters_in_a_String/Identifying_Duplicate_Characters_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Identifying_Duplicate_Characters_in_a_String/Identifying_Duplicate_Characters_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Identifying_Duplicate_Characters_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Identifying_Duplicate_Characters_in_a_String/Solutions/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Identifying_Duplicate_Characters_in_a_String/Solutions/main.c -------------------------------------------------------------------------------- /Strings/Identifying_Longest_Substring_Without_Repeats/Identifying_Longest_Substring_Without_Repeats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Identifying_Longest_Substring_Without_Repeats/Identifying_Longest_Substring_Without_Repeats.txt -------------------------------------------------------------------------------- /Strings/Identifying_Longest_Substring_Without_Repeats/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Listing_Multiple_Occurrences_of_Characters_in_a_String/Listing_Multiple_Occurrences_of_Characters_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Listing_Multiple_Occurrences_of_Characters_in_a_String/Listing_Multiple_Occurrences_of_Characters_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Listing_Multiple_Occurrences_of_Characters_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Minimizing_Palindromic_Partitions/Minimizing_Palindromic_Partitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Minimizing_Palindromic_Partitions/Minimizing_Palindromic_Partitions.txt -------------------------------------------------------------------------------- /Strings/Minimizing_Palindromic_Partitions/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Palindrome_Validation_for_Strings/Palindrome_Validation_for_Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Palindrome_Validation_for_Strings/Palindrome_Validation_for_Strings.txt -------------------------------------------------------------------------------- /Strings/Palindrome_Validation_for_Strings/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Pangram_Verification/Pangram_Verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Pangram_Verification/Pangram_Verification.txt -------------------------------------------------------------------------------- /Strings/Pangram_Verification/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Recursive_String_Reversal/Recursive_String_Reversal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Recursive_String_Reversal/Recursive_String_Reversal.txt -------------------------------------------------------------------------------- /Strings/Recursive_String_Reversal/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Reversing_Words_in_a_Sentence_Without_Libraries/Reversing_Words_in_a_Sentence_Without_Libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Reversing_Words_in_a_Sentence_Without_Libraries/Reversing_Words_in_a_Sentence_Without_Libraries.txt -------------------------------------------------------------------------------- /Strings/Reversing_Words_in_a_Sentence_Without_Libraries/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/String-to-Integer_Conversion_Without_Built-in_Functions/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/String-to-Integer_Conversion_Without_Built-in_Functions/Solutions/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/String-to-Integer_Conversion_Without_Built-in_Functions/Solutions/main.c -------------------------------------------------------------------------------- /Strings/String-to-Integer_Conversion_Without_Built-in_Functions/String-to-Integer_Conversion_Without_Built-in_Functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/String-to-Integer_Conversion_Without_Built-in_Functions/String-to-Integer_Conversion_Without_Built-in_Functions.txt -------------------------------------------------------------------------------- /Strings/Validating_Balanced_Parentheses_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Validating_Balanced_Parentheses_in_a_String/Validating_Balanced_Parentheses_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Validating_Balanced_Parentheses_in_a_String/Validating_Balanced_Parentheses_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Verifying_Numeric-only_Characters_in_a_String/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Verifying_Numeric-only_Characters_in_a_String/Verifying_Numeric-only_Characters_in_a_String.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Verifying_Numeric-only_Characters_in_a_String/Verifying_Numeric-only_Characters_in_a_String.txt -------------------------------------------------------------------------------- /Strings/Verifying_String_Rotations/Solutions/README.md: -------------------------------------------------------------------------------- 1 | You can post your solutions in this folder. -------------------------------------------------------------------------------- /Strings/Verifying_String_Rotations/Verifying_String_Rotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Strings/Verifying_String_Rotations/Verifying_String_Rotations.txt -------------------------------------------------------------------------------- /Structures_and_Unions/32bit_value_access/32bit_value_access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/32bit_value_access/32bit_value_access.txt -------------------------------------------------------------------------------- /Structures_and_Unions/32bit_value_access/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/32bit_value_access/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/32bit_value_access/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/3D_point_distance/3D_point_distance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/3D_point_distance/3D_point_distance.txt -------------------------------------------------------------------------------- /Structures_and_Unions/3D_point_distance/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/3D_point_distance/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/3D_point_distance/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/4byte_value_conversion/4byte_value_conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/4byte_value_conversion/4byte_value_conversion.txt -------------------------------------------------------------------------------- /Structures_and_Unions/4byte_value_conversion/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/IP_address_conversion/IP_address_conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/IP_address_conversion/IP_address_conversion.txt -------------------------------------------------------------------------------- /Structures_and_Unions/IP_address_conversion/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/IP_address_representation/IP_address_representation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/IP_address_representation/IP_address_representation.txt -------------------------------------------------------------------------------- /Structures_and_Unions/IP_address_representation/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/book_price_discount/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/book_price_discount/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/book_price_discount/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/book_price_discount/book_price_discount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/book_price_discount/book_price_discount.txt -------------------------------------------------------------------------------- /Structures_and_Unions/color_RGB_CMYK/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/color_RGB_CMYK/color_RGB_CMYK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/color_RGB_CMYK/color_RGB_CMYK.txt -------------------------------------------------------------------------------- /Structures_and_Unions/command_parsing/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/command_parsing/command_parsing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/command_parsing/command_parsing.txt -------------------------------------------------------------------------------- /Structures_and_Unions/complex_number_operations/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/complex_number_operations/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/complex_number_operations/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/complex_number_operations/complex_number_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/complex_number_operations/complex_number_operations.txt -------------------------------------------------------------------------------- /Structures_and_Unions/data_packet_serialization/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/data_packet_serialization/data_packet_serialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/data_packet_serialization/data_packet_serialization.txt -------------------------------------------------------------------------------- /Structures_and_Unions/date_difference/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/date_difference/date_difference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/date_difference/date_difference.txt -------------------------------------------------------------------------------- /Structures_and_Unions/device_config_bitfields/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/device_config_bitfields/device_config_bitfields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/device_config_bitfields/device_config_bitfields.txt -------------------------------------------------------------------------------- /Structures_and_Unions/employee_address/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/employee_address/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/employee_address/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/employee_address/employee_address.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/employee_address/employee_address.txt -------------------------------------------------------------------------------- /Structures_and_Unions/endianness_conversion/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/endianness_conversion/Solution/convert_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/endianness_conversion/Solution/convert_endian.h -------------------------------------------------------------------------------- /Structures_and_Unions/endianness_conversion/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/endianness_conversion/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/endianness_conversion/endianness_conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/endianness_conversion/endianness_conversion.txt -------------------------------------------------------------------------------- /Structures_and_Unions/error_code_representation/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/error_code_representation/error_code_representation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/error_code_representation/error_code_representation.txt -------------------------------------------------------------------------------- /Structures_and_Unions/file_attributes/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/file_attributes/file_attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/file_attributes/file_attributes.txt -------------------------------------------------------------------------------- /Structures_and_Unions/library_database/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/library_database/library_database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/library_database/library_database.txt -------------------------------------------------------------------------------- /Structures_and_Unions/menu_item_function_pointer/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/menu_item_function_pointer/menu_item_function_pointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/menu_item_function_pointer/menu_item_function_pointer.txt -------------------------------------------------------------------------------- /Structures_and_Unions/network_packet_type/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/network_packet_type/network_packet_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/network_packet_type/network_packet_type.txt -------------------------------------------------------------------------------- /Structures_and_Unions/structure_memory_optimization/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/structure_memory_optimization/structure_memory_optimization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/structure_memory_optimization/structure_memory_optimization.txt -------------------------------------------------------------------------------- /Structures_and_Unions/student_avg_marks/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/student_avg_marks/Solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/student_avg_marks/Solution/main.c -------------------------------------------------------------------------------- /Structures_and_Unions/student_avg_marks/student_avg_marks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/student_avg_marks/student_avg_marks.txt -------------------------------------------------------------------------------- /Structures_and_Unions/student_linked_list/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/student_linked_list/student_linked_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/student_linked_list/student_linked_list.txt -------------------------------------------------------------------------------- /Structures_and_Unions/time_operations/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/time_operations/time_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/time_operations/time_operations.txt -------------------------------------------------------------------------------- /Structures_and_Unions/variable_data_type_array/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/variable_data_type_array/variable_data_type_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/variable_data_type_array/variable_data_type_array.txt -------------------------------------------------------------------------------- /Structures_and_Unions/vehicle_extended_structure/Solution/README.md: -------------------------------------------------------------------------------- 1 | You can push your solutions here. -------------------------------------------------------------------------------- /Structures_and_Unions/vehicle_extended_structure/vehicle_extended_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Yashwanth-Naidu/C-Programming-Questions/HEAD/Structures_and_Unions/vehicle_extended_structure/vehicle_extended_structure.txt --------------------------------------------------------------------------------