Skip to content

Instantly share code, notes, and snippets.

@nazmul629
Last active October 12, 2019 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nazmul629/7dec9fb20c070312dcb77f389418aca4 to your computer and use it in GitHub Desktop.
Save nazmul629/7dec9fb20c070312dcb77f389418aca4 to your computer and use it in GitHub Desktop.
C Programming Cours Plan

Learning C Programming Language

  1. *Introduction of C

    • Installing Code::Block

    • How to write Code.

    • Escape sequence

      • \t \b, \n, "
    • Variable & Data Type

    • Format specifier

      • %b,%d,%c,%f
    • Comment Problems

  2. Input-Output

    • ASCCI value
    • Uper Case To LoweCase useing ASCCI Value
    • Uper Case To LoweCase toupper(), tolower
    • Decimal to Octal /Octal to Decimal/ Hexa decimal Octal/Decimal ;
  3. Operator

    • Arithmetic Operator

      • (+, -, /, *, % )
        • Area of Triangle
    • Assinment Oparator

      • +=, -=,*=, /=, %= ;
    • Unary Oparator

      • ++a, a++,--a,a--
    • Relational Oparator

      • (<.>,==,!=,>=,<=)
    • Logical Operator

      • (&&, ||, !)
    • Coditional Operator

      • tarnary Oparator
    • Bitwise Oparator

      • (&, |, ^,>>,<<,~)
  4. Math

    • sin(),cos(),tan(),abs() sqrt() PI,
  5. Control Statement >>(if,else)

    • Positive /negitive / Zero
    • Even /Odd
    • Vowel / Consonant
    • maximum/ Minimum
    • Leap Year
    • Pass/ Fail
  6. Switch

  7. Loop (for, while, do while)

    • Print 1 to 10 all Number;
    • print sum of all number 1 to 10;
    • print sum of the even number m to n;
    • print sum of the even numbers m to n;
    • 1+2+3+.........+n
    • 1+3+5+.........+n
    • 1.5+2.5+3.5+......+n
    • i^2+2^2+3^2.....+n^2
    • 123*.........*n
    • 135*.........*n
    • 1.52.53.5*......*n
    • i^22^23^2.....*n^2
  8. Series

  9. Pattern

  10. Array

  11. Function

  12. Structere

  13. Pointer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment