Skip to main content

Posts

Showing posts with the label how to write a program

Drawing Doraemon`s face using Python programming language...

                                                    Doraemon`s Face...    Hey everyone! Today I tried to make a Doraemon using python`s Turtle  module. As I`m not a professional programmer, I  made it in a normal way.  I have posted the same source code below. Try to edit and execute it in your favorite IDE(Integrated Development Environment) or mobile application used for python programming.       Python Code:         import turtle a = turtle.Screen() a.bgcolor('lightblue') d = turtle.Turtle() d.color('black') d.pensize(3) d.speed(10) d.penup() d.fd(145) d.pendown() d.fd(10) d.left(50) d.circle(150,258) d.left(51) d.fd(10) d.color('black','white') d.begin_fill() d.fd(212) d.lt(50) d.circle(125,100) d.rt(55) d.circle(35,180) d.right(190) d.circle(35,180) d.rt(62) d.circle(116,111) d.lt(46) d.en...

COMPLETE 'C' PROGRAMMING FOR BEGINNERS.

  COMPLETE 'C' PROGRAMMING FOR BEGINNERS.             If you have taken  CS or IT course and you don't know anything about programming or simply you have interest in programming then this blog is meant specially for you'll. In this blog I'll be discussing about the syntax, compilation, execution, datatypes, variables, which software to use... etc for C programming. So lets begin. INTRODUCTION:            As we all know C language is a high-level programming language which uses compiler to compile codes into binary language(computer language comprising of 1's and 0's) and  then into human readable language i.e. english language. It is  considered as the mother of all programming languages and was developed by Dennis Ritchie(computer scientist) in 1972 at Bell laboratories. If you learn C language completely, it'll be easy for you to learn other programming languages such as C++,C#,JAVA, PYTHON etc. SYNTAX: ...