楼主: 大家开心
9479 90

C Programming For Beginners   [推广有奖]

已卖:112893份资源

泰斗

25%

还不是VIP/贵宾

-

TA的文库  其他...

大家开心文库

威望
9
论坛币
1033994 个
通用积分
865.6052
学术水平
3617 点
热心指数
3599 点
信用等级
3043 点
经验
609309 点
帖子
1851
精华
204
在线时间
2027 小时
注册时间
2013-10-3
最后登录
2025-12-23

初级学术勋章 初级热心勋章 中级学术勋章 中级热心勋章 初级信用勋章 高级学术勋章 高级热心勋章 中级信用勋章 特级学术勋章 高级信用勋章 特级信用勋章

楼主
大家开心 发表于 2015-7-10 16:42:40 |AI写论文

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
Product Details
  • File Size: 808 KB
  • Print Length: 415 pages
  • Publisher: Noel Kalicharan (June 30, 2015)
  • Publication Date: June 30, 2015
  • Sold by: Amazon Digital Services, Inc.
  • Language: English


本帖隐藏的内容

C_Programming.rar (4.25 MB, 需要: 1 个论坛币) 本附件包括:
  • C Programming For Beginners - Noel Kalicharan.epub
  • C Programming For Beginners - Noel Kalicharan.pdf
  • C Programming For Beginners - Noel Kalicharan.azw3



http://www.amazon.com/C-Programming-Beginners-Noel-Kalicharan-ebook/dp/B010PHUAUW/ref=sr_1_2?ie=UTF8&qid=1436517499&sr=8-2&keywords=noel+kalicharan

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Programming beginners beginner Program beginn searching concepts examples secret online

已有 3 人评分经验 论坛币 学术水平 热心指数 信用等级 收起 理由
kongqingbao280 + 40 + 1 精彩帖子
Nicolle + 100 + 100 + 1 + 1 + 1 精彩帖子
statax + 40 + 2 精彩帖子

总评分: 经验 + 140  论坛币 + 140  学术水平 + 2  热心指数 + 3  信用等级 + 1   查看全部评分

本帖被以下文库推荐

沙发
rrjj101022(未真实交易用户) 发表于 2015-7-10 18:19:36
Find the Sum of Two Lengths using C
  1. Program P4.2
  2. //find the sum of two lengths given in metres and cm
  3. #include <stdio.h>
  4. int main() {
  5. int m1, cm1, m2, cm2, mSum, cmSum;
  6. printf(“Enter values for m and cm: “);
  7. scanf(“%d %d”, &m1, &cm1);
  8. printf(“Enter values for m and cm: “);
  9. scanf(“%d %d”, &m2, &cm2);
  10. mSum = m1 + m2; //add the metres
  11. cmSum = cm1 + cm2; //add the centimetres
  12. if (cmSum >= 100) {
  13. cmSum = cmSum - 100;
  14. mSum = mSum + 1;
  15. }
  16. printf(“\nSum is %dm %dcm\n”, mSum, cmSum);
  17. }
复制代码


已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

藤椅
liuqin9198(真实交易用户) 发表于 2015-7-10 18:28:41
  1. EXERCISES 1
  2. 1. What makes it possible to do such a variety of things on a computer?
  3. 2. Computers can execute instructions written in what language?
  4. 3. Give two advantages of assembly language over machine language.
  5. 4. Give two advantages of a high-level language over assembly language.
  6. 5. Describe two main tasks performed by a compiler.
  7. 6. Describe the steps required to solve a problem on a computer.
  8. 7. Distinguish between an algorithm and a program.
  9. 8. Programming instructions fall into 3 main categories; what are they?
  10. 9. Distinguish between a syntax error and a logic error.
  11. 10. What is meant by “debugging a program”?
  12. 11. Name 5 data types commonly used in programming and give examples of constants
  13. of each type.
  14. 12. What are the different classes into which characters can be divided? Give examples
  15. in each class.
  16. 13. What is the purpose of comments in a program?
  17. 14. Write a program to print Welcome to C on the screen.
  18. 15. Write a program to print the following:
  19. There is a tide in the affairs of men
  20. Which, taken at the flood, leads on to fortune
  21. 16. Write a program to print any 4 lines of your favourite song or poem.
  22. 17. Same as exercise 16, but print a blank line after each line.
  23. 18. If a is 29 and b is 5, what is printed by each of the following statements?
  24. printf(“The product of %d and %d is %d\n”, a, b, a * b);
  25. printf(“%d + %d = %d\n”, a, b, a + b);
  26. printf(“%d - %d = %d\n”, a, b, a - b);
  27. printf(“%d x %d = %d\n”, a, b, a * b);
  28. 19. If a is 29 and b is 14, what is printed by the following statements?
  29. printf(“%d + \n”, a);
  30. printf(“%d\n”, b);
  31. printf(“—\n”);
  32. printf(“%d\n”, a + b);
  33. 20. If rate = 15, what is printed by
  34. (a) printf(“rate\n”)?
  35. (b) printf(“%d\n”, rate)?
复制代码

已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

板凳
condmn(真实交易用户) 发表于 2015-7-10 18:41:14
  1. Program P5.1
  2. //print the sum of several numbers entered by a user
  3. #include <stdio.h>
  4. int main() {
  5. int num, sum = 0;
  6. printf(“Enter a number (0 to end): “);
  7. scanf(“%d”, &num);
  8. while (num != 0) {
  9. sum = sum + num;
  10. printf(“Enter a number (0 to end): “);
  11. scanf(“%d”, &num);
  12. }
  13. printf(“\nThe sum is %d\n”, sum);
  14. }
复制代码

已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

报纸
life_life(真实交易用户) 发表于 2015-7-10 19:42:09
  1. Program P5.2
  2. //find the HCF of two numbers entered by a user
  3. #include <stdio.h>
  4. int main() {
  5. int m, n, r;
  6. printf(“Enter two numbers: “);
  7. scanf(“%d %d”, &m, &n);
  8. while (n != 0) {
  9. r = m % n;
  10. m = n;
  11. n = r;
  12. }
  13. printf(“\nTheir HCF is %d\n”, m);
  14. }
复制代码

已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

地板
小陆家嘴(真实交易用户) 发表于 2015-7-10 23:55:52
谢谢分享~
已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

7
mike68097(真实交易用户) 发表于 2015-7-11 01:46:08
  1. Program P5.3
  2. //print the sum and count of several numbers entered by a user
  3. #include <stdio.h>
  4. int main() {
  5. int num, sum = 0, n = 0;
  6. printf(“Enter a number (0 to end): “);
  7. scanf(“%d”, &num);
  8. while (num != 0) {
  9. n = n + 1;
  10. sum = sum + num;
  11. printf(“Enter a number (0 to end): “);
  12. scanf(“%d”, &num);
  13. }
  14. printf(“\n%d numbers were entered\n”, n);
  15. printf(“The sum is %d\n”, sum);
  16. }
复制代码

已有 1 人评分论坛币 收起 理由
Nicolle + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

8
雪过无痕(真实交易用户) 在职认证  发表于 2015-7-11 07:35:13
Thanks for Sharing!

9
Edwardu(未真实交易用户) 发表于 2015-7-11 07:37:19
good book

10
pzh_hzp(未真实交易用户) 发表于 2015-7-11 08:13:31
kankan

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群
GMT+8, 2025-12-24 12:50