Saturday, December 18, 2021

Top C Programming Course For Free






1.Saurabh Shukla

C Video Tutorial FREE Hindi | Free learning videos to Learn programming languages like C,C++,Java, PHP and other computer subjects like Data Structure, DBMS, SQL. Practice programming questions and campus preparation are another highlight of the site. FREE education to all is the motive at the core. This site gives you an interface to access all the videos through which you can learn various technical courses. Here we show case the highlights of the learning platform: 

C Programs

If you really want to learn programming then do attempt C programs before watching its solution. Do not give up too early, give time to yourself. When program is developed, you should dry run it to check its correctness. Now type the code in the editor, compile and run it. Hopefully outcome is no different from what you were expecting, otherwise your dry run was not done in proper manner. Finding mistakes in your program by yourself without compiling it is very important in skill development.

Click on the solution link for the corresponding problem.

       Warm up Programs


Write a program to add two numbers.Solution

Write a program to calculate area of a circle.Solution

Write a program to print your name at the center of the screen.

Write a program which takes input as integers only that is restrict other characters from inputSolution

Elementary tricky programs


How to print %d using printf in C languageSolution

Write a program to swap two numbersSolution

Write a program to swap two numbers without using third variableSolution

Write a program to check whether a number is even or odd without using modulus(%) operatorSolution

Write a program to check even or odd without modulus and bitwise operatorSolution

C Program to move your name with keystrokes

Programs on decision control(if,if else, switch)


Write a program to check whether a given number is even or odd.Solution

Write a program to check whether a given number is divisible by 5 or not.Solution

Write a program to to find greater between two numbersSolution

Write a program to to find greater among three numbersSolution

Write a program to find roots of a quadratic equationSolution

C Program to check leap year in Hindi

Programs on Loops(while,do while, for)


Write a program to print Your name 5 times on the screen. Solution

Write a program to print first 10 natural numbers.Solution

Write a program to print first 10 natural numbers in reverse order.Solution

Write a program to print first N natural numbers. (N is given by user)Solution

Write a program to print first N natural numbers in reverse order. (N is given by user)Solution

Write a program to print first 10 even natural numbers.Solution

Write a program to print first 10 odd natural numbers.Solution

Write a program to print first N even natural numbers.Solution

Write a program to print first N odd natural numbers.Solution

Write a program to print first N even natural numbers in reverse orderSolution

Write a program to print first N odd natural numbers in reverse orderSolution

Write a program to print table of user’s choiceSolution

Write a program to calculate sum of first N natural numbers Solution

Write a program to calculate product of first N natural numbersSolution

Write a program to calculate factorial of a numberSolution

Write a program to calculate sum of first N even natural numbersSolution

Write a program to calculate sum of first N odd natural numbersSolution

Write a program to calculate x power y.(when user input x is 2 and y is 3 then the result will be 8)Solution

Write a program to count digits in a given number.Solution

Write a program to calculate sum of the digits of a given numberSolution

Write a program to reverse a numberSolution

Write a program to print all Armstrong numbers under 1000.Solution

Write a program to calculate LCM of two numbersSolution

Write a program to calculate HCF of two numbers.Solution

Write a program to check whether a given number is prime or notSolution

Write a program to print all prime numbers between two given numbersSolution

Write a program to print all prime factors of a given number. For example prime factors of 36 are 2,2,3,3Solution

Write a program to print first N terms of Fibonacci seriesSolution

Write a program to check co-prime numberSolution

Write a program to print N co-prime numbersSolution

Write a program to convert a binary number to decimal number

Write a program to convert a binary number to decimal number improved logic

Program to print ASCII chartSolution

Program to print first n positive numbers with two bits setSolution first logic|Solution Second Logic

Star Pattern-1 Program in CSolution

Star Pattern-2 Program in CSolution

Star Pattern-3 Program in C Solution

Star Pattern-4 Program in CSolution

Star Pattern-5 Program in CSolution

Star Pattern-6 Program in C Solution

Star Pattern-7 Program in C Solution

Star Pattern-8 Program in C Solution

Star Pattern-9 Program in CSolution

Star Pattern-10 Program in C Solution

Star Pattern-11 Program in C Solution

Star Pattern-12 Program in C Solution

Star Pattern-13 Program in CSolution

Star Pattern-14 Program in CSolution

Star Pattern-15 Program in CSolution

Star Pattern-16 Program in CSolution

Star Pattern-17 Program in CSolution

Star Pattern-18 Program in CSolution

Star Pattern-19 Program in CSolution

Star Pattern-20 Program in CSolution

Star Pattern-21 Program in CSolution

Star Pattern-22 Program in CSolution

Star Pattern-23 Program in CSolution

Star Pattern-24 Program in CSolution

Star Pattern-25 Program in CSolution

Star Pattern-26 Program in CSolution

Star Pattern-27 Program in CSolution

Star Pattern-28 Program in CSolution

Star Pattern-29 Program in CSolution

Star Pattern-30 Program in C Solution

Star Pattern-31 Program in C Solution

Star Pattern-32 Program in C Solution

Star Pattern-33 Program in C Solution

Star Pattern-34 Program in C Solution

Star Pattern-35 Program in CSolution

Star Pattern-35 Program in CSolution

Series Problems Program in C1+(1+2)+(1+2+3)+…+(1+2+3+…+N)

Series Problems Print first N Prime numbers

C programs on Functions


Write a function to calculate factorial of a number.(Takes Something, Returns Something)Solution

Write a function to calculate area of a circle.(Takes Something, Returns Something)

Write a program to print System Date. Solution

Write a function to calculate sum of first N natural numbers. (all four ways: TNRN, TSRN, TNRS, TSRS)Solution

Write a function to calculate sum of squares of first N natural numbers.(all four ways: TNRN, TSRN, TNRS, TSRS)Solution

Write a function to print Pascal triangleSolution

Write a program to express a given number as a sum of two prime numbers. Print all possible solutions.Solution

Programs on Recursion


Write a recursive function to calculate factorial of a number.Solution

Write a recursive function to find Nth term of Fibonacci series.Solution

Write a recursive function to sort an arraySolution

Write a recursive function to print first N natural numbersSolution

Write a recursive function to print first N natural numbers in reverse orderSolution

Write a recursive function to calculate sum of digits of a number Solution

Write a recursive function to calculate sum of squares of digits of a numberSolution

Write a recursive function to calculate sum of cubes of first N natural numbers Solution

Write a recursive function to calculate determinant of any orderSolution Part 1 of 3 | Solution Part 2 of 3 | Solution part 3 of 3

Command Line Arguments


How to use command line arguments in C language using code blocks HindiSolution

How to input integer using command line arguments in C language Hindi Solution

C Program to add two numbers taking from command line arguments | Hindi Solution

C Program to calculate factorial of a number taken from command line Solution

C programs on Arrays


Write a program to calculate sum of all even numbers and sum of all odd numbers. Numbers are entered through keyboard and stored in an array.Solution

Write a program to find greatest among 10 numbersSolution

Write a program to find smallest among 10 numbers.Solution

Write a program to add two matrices, each of order 3×3Solution

Write a program to multiply two matrices, each of order 3×3Solution

Program to generate 10 distinct number in given range in CSolution

Program to rotate an array by n positions in C language Solution

C programs on Strings


Write a Program to calculate length of the string using strlen() function.Solution

Write a program to reverse a string using strrev() function.Solution

Write a program to reverse a string without using strrev() function.Solution

Write a program to transform a string to its uppercase Solution

Write a program to sort strings in dictionary orderSolution

Write a program to check whether a string is palindrome or notSolution

Write a program to count words in a sentenceSolution

Write a program to reverse a string word wiseSolution

Write a program to remove adjacent duplicate characters from a stringSolution

Write a program to check whether a given string is alphanumeric or not.Solution

Write a program to input variable length string.

Write a program to count vowels in a given stringSolution

Write a program to find a substring in a given string Solution

Structure in C language


Write a program that define a structure student, with members rollno, name and age. Also define functions to input and show student data.Solution

C programs on Linked list


How to reverse a linked list in CSolution

Program of circular linked list Part-1Solution

Program of circular linked list in C Part-2Solution

Program of Circular linked list in C Part-3Solution

Program of Circular linked list in C Part-4Solution

Program of Circular linked list in C Part-5Solution

Program of Circular linked list in C Part-6Solution

Program of Circular linked list in C Part-7Solution

Program of Circular linked list in C Part-8Solution

Graphics


Happy Valentine’s Day Program in C                  






2. Naresh I technologies : 


C Language Training

About C-Language Training
C is an basic building block for every languages. It is a general Purpose Language.  To develop the programming skills ‘C’ is the only platform for to develop programming techniques for any type languages. It is an Mid-level programming language for systems programming very widely used, relatively low-level, weakly typed, systems programming language associated with Unix and through that with Linux and the open source movement Performance becomes somewhat portable. Many Applications Like System Software, Application Software, Embedded Systems, Cool Games, Mobile applications, Device Drivers Programming etc of the World applications written in C and the List continues…C Designed and implemented by Dennis Ritchie 1972.

C Training Course Objective
This Course main objective for the student to develop primary programming skills upto the higher end in order solve the different programming logics. The student can able write different type of logics at the end of the sessions. After learning the C  course the student can able get all the fundamental knowledge in all the languages. After Completion the student can able to attend any MNC Company interview and can solve the technical rounds both theoretically and Practically. We Provide lot of logical examples to make as good as.

Why This Course is Required
One thing we can speak without C Knowledge there is no Programming Logics to learn any language. There is no interviews for a Fresher without C language. To learn Java, .Net, Databases the list continues so many we require “C” Knowledge  for a student  Finally to tell many languages are internally Programmed by only C Language.

                         

C  Training Course Overview
  1. Fundamentals in C
  2. Program
  3. Programming
  4. Programming Languages
  5. Types of software
  6. Introduction to C
  7. History of C
  8. Features of C
  9. Applications of C
  10. Character set, ASCII Table
  11. Tokens
  12. Keywords
  13. Identifiers & Naming Rules
  14. constants
  15. Data Types
  16. Type Qualifiers
  17. How does the data stored in Computers Memory
  18. Variables
  19. Variable Declaration
  20. Variable Assignment
  21. Variable Initialization
  22. Comments
  23. Defining Constants
  24. MCQs
  25. Operators and Expressions
  26. Arithmetic operators
  27. Arithmetic expressions
  28. Evaluation of expressions
  29. Relational operators
  30. Logical operators
  31. Assignment operators
  32. Increment & decrement operators
  33. Conditional operator
  34. Bitwise operators
  35. Type casting
  36. Sizeof operator
  37. Comma operator
  38. Operators Precedence and Associativity
  39. Expressions
  40. Evaluation of Expressions
  41. MCQs
  42. Input-Output Functions
  43. Input-Output Library Functions
  44. Non-formatted Input and Output
  45. Character oriented Library functions
  46. Compiler, Linker and Loader
  47. Program execution phases
  48. Formatted Library Functions
  49. Mathematical Library Functions
  50. Structure of a C Program
  51. IDE
  52. Basic programs
  53. MCQs
  54. Control Statements
  55. Conditional Control Statements
  56. if
  57. if-else
  58. nested if-else
  59. if-else-if ladder
  60. Multiple Branching Control Structure
  61. switch-case
  62. Loop Control statements
  63. while
  64. do-while
  65. for
  66. Nested Loops
  67. Jump Control structures
  68. break
  69. continue
  70. goto
  71. return
  72. Programs
  73. MCQs
  74. Arrays
  75. Arrays
  76. One dimensional arrays
  77. Declaration of 1D arrays
  78. Initialization of 1D arrays
  79. Accessing element of 1D arrays
  80. Reading and displaying elements
  81. Programs on 1D Arrays
  82. Two dimensional arrays
  83. Declaration of 2D arrays
  84. Initialization of 2D arrays
  85. Accessing element of 2D arrays
  86. Reading and displaying elements
  87. Programs on 2D Arrays
  88. Three dimensional arrays
  89. MCQs
  90. Strings
  91. String Concept
  92. Introduction to String in C
  93. Storing Strings
  94. The string Delimiter
  95. String Literals (String Constants)
  96. Strings and Characters
  97. Declaring Strings
  98. Initializing Strings
  99. Strings and the Assignment Operator
  100. String Input Functions / Reading Strings
  101. String Output Functions / Writing Strings
  102. String Input-Output using fscanf() and fprintf() Functions
  103. Single Character Library Functions / Character Manipulation in the String
  104. String Manipulation Library Functions
  105. Programs Using Character Arrays
  106. Array of Strings (2D Character Arrays)
  107. Programs Using Array of Strings
  108. MCQs
  109. Pointers
  110. Understanding Memory Addresses
  111. Pointer Operators
  112. Pointer
  113. Pointer Advantages and Disadvantages
  114. Declaration of Pointer Variables
  115. Initialization of Pointer Variables
  116. Dereferencing / Redirecting Pointer Variables
  117. Declaration versus Redirection
  118. Void Pointer
  119. Null Pointer
  120. Compatibility
  121. Array of Pointers
  122. Pointer to Pointer
  123. Pointer Arithmetic
  124. Dynamic Memory Allocation Functions
  125. Functions
  126. Functions
  127. Advantages of using functions
  128. Defining a function
  129. Calling a function
  130. Return statement
  131. Function Prototype
  132. Basic Function Designs
  133. Programs Using Functions
  134. Scope
  135. Recursion
  136. Iteration vs Recursion
  137. Nested functions
  138. Variable Length Number of Arguments
  139. Parameter Passing Techniques – Call by value & Call by Address
  140. Functions Returning Pointers
  141. Pointers and One-Dimensional Arrays
  142. Pointers and Two-Dimensional Arrays
  143. Passing 1D arrays to Functions
  144. Passing 2D arrays to Functions
  145. Pointers and Strings
  146. Passing Strings to Functions
  147. Pointer to Function
  148. MCQs
  149. Storage Classes
  150. Object Attributes
  151. Scope
  152. Extent
  153. Linkage
  154. auto
  155. static
  156. extern
  157. register
  158. MCQs
  159. Preprocessor Directives
  160. The #include Preprocessor Directive & User defined header files
  161. The #define Preprocessor Directive: Symbolic Constants
  162. The #define Preprocessor Directive: Macros
  163. Conditional Compilation Directives
  164. #if
  165. #else
  166. #elif
  167. #endif
  168. #ifdef
  169. #ifndef
  170. #undef
  171. #error
  172. #line
  173. #pragma
  174. MCQs
  175. Structures, Unions, Enumerations and Typedef
  176. Structures
  177. Structure Type Declaration
  178. Structure Variable Declaration
  179. Initialization of Structure
  180. Accessing the members of a structure
  181. Programs Using Structures
  182. Operations on Structures (Copying and Comparing Structures)
  183. Nested structures (Complex Structures)
  184. Structures Containing Arrays (Complex Structures)
  185. Array of Structures (Complex Structures)
  186. Pointer to Structure
  187. Accessing structure member through pointer using dynamic memory allocation
  188. Pointers within Structures
  189. Self-referential structures
  190. Passing Structures to Functions
  191. Functions returning Structures
  192. Unions
  193. Differences between Structures & Unions
  194. Enumerated Types / enum keyword
  195. The Type Definition / typedef keyword
  196. Bit fields
  197. MCQs
  198. Command Line Arguments
  199. Files
  200. Concept of a file
  201. Streams
  202. Text File and Binary Files
  203. State of a File
  204. Opening and Closing Files
  205. File Input / Output Functions
  206. Formatted Input-Output Functions
  207. Character Input-Output Functions
  208. Line Input-Output Functions
  209. Block Input-Output Functions
  210. File Status Functions (Error Handling)
  211. Positioning Functions
  212. System File Operations
  213. MCQs
  214. Graphics
  215. Initialization of graphics
  216. Drawing shapes using pre-defined functions
  217. Finding the resolution of screen
  218. Setting colors to text and window
  219. Font settings
  220. Fill styles
  221. Basic GUI applications
                        



3.Code With Harry



In this latest course on C language tutorials in 2019 in Hindi , we will learn how to write efficient and powerful C programs using modern tools. 
C programming is one of the most requested topics on this channel which is why I created this c programming for beginners course. Learning C programming in Hindi is a good decision for people who are comfortable in learning in their mother tongue rather than English. 
These c programming tutorials will clear all your c programming basics and fundamentals. I will constantly give exercises and quizzes throughout this course. 
I once again welcome you to this c programming tutorial for beginners video series.
                       
C is a language of programming developed in 1972 at the Bell Laboratories of AT & T, USA. A man named Dennis Ritchie designed and wrote it. In the late seventies C began to replace that time's more familiar languages such as PL / I, ALGOL, etc. Nobody was pushing C. It was not the language of the' official' Bell Labs. Thus, the reputation of C has spread without any advertisement and its pool of users has grown. 

Ritchie seems to have been rather surprised that so many programmers preferred C to older languages such as FORTRAN or PL / I, or newer languages such as Pascal and APL. That's what happened, though. Possibly why C seems so popular is because it's reliable, simple and easy to use. In addition, a language that has survived for more than 3 decades must be really good in an industry where new languages, tools and technologies emerge and vanish day in and day out.
Some of the topics covered by this course includes C Tutorial, What is C Language, History of C,  Features of C, How to install C, First C Program, Flow of C Program, printf, scanf, Variables in C, Data Types in c, Keywords in c, C Operators, C Comments, C Escape Sequence, Constants in C, C Fundamental Test, C Control Statements, C if-else, C switch, C Loops, C do-while loop, C while loop, C for loop, C break, C continue, C goto, Type Casting, C Control Statement, C Functions, What is function, Call: Value & Reference, Recursion in c, Storage Classes, C Functions Test, C Array, 1-D Array, 2-D Array, Array to Function, C Array Test, C Pointers, C Pointers, C Pointer to Pointer, C Pointer Arithmetic, C Pointers, C Dynamic Memory, Dynamic memory, C Strings, String in C, C gets() & puts(), C String Functions, C strlen(), C strcpy(), C strcat(), C strcmp(), C strrev(), C strlwr(), C strupr(), C strstr(), C String Test, C Math, C Math Functions, C Structure Union, C Structure, C Array of Structures, C Nested Structure, C Union, C Structure Test, C File Handling, C File Handling, C fprintf() fscanf(), C fputc() fgetc(), C fputs() fgets(), C fseek(), C rewind(), C ftell(), C Preprocessor, C Preprocessor, C Macros, C #include, C #define, C #undef, C #ifdef, C #ifndef, C #if, C #else, C #error, C #pragma, C Preprocessor Test, C Command Line, Command Line Arguments in C.

                
                             














I have done by graduation with mathematics also completed master in computer application. Right now wroking as a softwere developer at NetTantra.Seeking opportunities where I can utilize my analytical, mathematical and technical skills to solve real life problems to draw insights that can help with business decisions.

0 comments:

Post a Comment

Start Work With Me

Contact Us
Bibhuti Bhusan Sahoo
Bhubaneswar,India