--> Learn Computer Programming - Level one of C Programming (Part 04) - Last Post | Computer and Mobile Tips and Tricks

Learn Computer Programming - Level one of C Programming (Part 04) - Last Post

Learn Computer Programming - Level one of C Programming (Part 04) Learn Computer Programming - Level one of C Programming (Part 04) This is ...

https://acmtt.blogspot.com/2018/11/learn-computer-programming-p4.html
Learn Computer Programming - Level one of C Programming (Part 04)

Learn Computer Programming - Level one of C Programming (Part 04)
This is a encourage post to become start learning C programming, this is a last post, first we have to see the response about this post, then we will continue our contribution in it.

Work with fixed data for variables

How to declare variables in the previous episode we know. But what is the benefit of keeping data in variables within a program? How do I use the data? Before answering the question, let's run a program. Well, what program can run? Let's create a program so you can add any number as you like. At the very beginning, I have says that developing logic is more important then developing language. So let's do a program to make sum of two numbers.



Problems Processing Step :

  • First we need to take three variables. Two variable is for input and other is for output.
  • Giving two input from the user.
  • Sum up.
  • Output
Let's go to solve this problem with programming.




Now we'll analyze this program.

int a, b, c;

Through this line, three variables of int type are declared in the program, which are named a, b and c. In this type variable you must have an integer number.

printf(“\n Enter first value:”);


Through this line Enter first value: writing screen is shown.

scanf(“%d”, &a);

A full number of inputs are being requested from the user through this line, which will be pressed through the user's keyboard button. The number that the user types in will be in a variable. By &a means the address of a.  That is, through this statement, the compiler is informed that the number obtained will be kept in the address given for a.

printf(“\n Enter second value:”);

Through this line Enter second value: writing screen is shown.

scanf(“%d”, &b);

Another integer input from the user through the line, which is being sought user will press the button on your keyboard. The number that the user will type in b variables.

c=a+b;

The data stored in a and b addresses will be added through this line. Adding the sum found to the variable c is being set.

printf(“\n %d+%d is %d”, a,b,c);

The data stored in a, b, c through this line is being shown in the output.

Use of scanf () function:

Two numbers are added by the scanf () function without input. Let's run the program below.




By this program, we can add two numbers. But the problem is that here only we can add two numbers. To add a number later, our source program has to be changed again which is a very difficult task. So if we take input from the user to increase the efficiency of the program, we can add any two numbers instead of adding two digits.
You can not declare multiple variables by the same name
Now what if you want to add any three numbers? Take four variables or three? Think of yourself. Do you can multiplication or subtraction of two numbers? Hope you can.

Keyword:

Keyword is a special word used in the program. Each keyword has certain meanings and completes a specific task in the program.

Such as: auto, for, double, break, int, void, float etc. keywords. If you do programming, your idea about keywords will come. But one thing must be kept in mind that the name of the keyword must be written in a word. In other words, there can be no gaps in it. However, if two keywords are used in any program, then there will be a gap in the middle.

Happy Programming.....

Please visit our post to see the full details about programming...


Learn Computer Programming - Programming Idea (Part 01)Click Here
Learn Computer Programming - Basic C Programming (Part 02)Click Here
Learn Computer Programming - Level one of C Programming (Part 03)Click Here
Learn Computer Programming - Level one of C Programming (Part 04)Click Here


Thanks for visiting.
Read Our other post. We hope you like it. Please leave a comment for improving any part in your sense.

COMMENTS

Name

AI News,2,Amazon,1,AMD vs. Intel,1,Blogger Template,1,Boot Problems,4,ChatGPT,2,Computer,31,Computer Programming,4,Computer Software,20,Conversion,1,Data & Recovery,3,Download IDM,5,Driver Solution,2,Firmware Installing,3,Fiverr,2,Freelance,3,Games,5,Garena Free Fire,3,Hacking,8,Hardware,3,Microsoft Office Softwares,6,Mobile,14,Mobile Brands,2,Mobile Information,2,Mustek,1,Original Driver Disk,1,Paid_Software,2,Payments Rules,1,Performance,4,PUBG Mobile,2,Router Choice,1,SEO,6,Smartphone_Performance,1,Software,1,Specification,6,Troubleshooting,5,Upcoming,5,Video Making Tips,3,WhatsApp Group,7,Windows 11,2,Windows 365,1,Windows OS,4,WordPress,1,
ltr
item
Computer and Mobile Tips and Tricks: Learn Computer Programming - Level one of C Programming (Part 04) - Last Post
Learn Computer Programming - Level one of C Programming (Part 04) - Last Post
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAq6WHfRcS7iL-18tSsIP8J5Zl2QiVNksCQ_OnbmuQfKtzXr9wov43Ktzxk868qdGvov_GRmCnbL7Ega1G6PZLRYGcJg_xXrf3weEpCDZiEkavJ2csci6zLrKl2m6KChhQYPlVsFwO0S8/s640/Learn+Computer+Programming+-+Level+one+of+C+Programming+%2528Part+04%2529.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAq6WHfRcS7iL-18tSsIP8J5Zl2QiVNksCQ_OnbmuQfKtzXr9wov43Ktzxk868qdGvov_GRmCnbL7Ega1G6PZLRYGcJg_xXrf3weEpCDZiEkavJ2csci6zLrKl2m6KChhQYPlVsFwO0S8/s72-c/Learn+Computer+Programming+-+Level+one+of+C+Programming+%2528Part+04%2529.png
Computer and Mobile Tips and Tricks
https://www.acmtt.com/2018/11/learn-computer-programming-level-one-of.html
https://www.acmtt.com/
https://www.acmtt.com/
https://www.acmtt.com/2018/11/learn-computer-programming-level-one-of.html
true
2788129988058280799
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content