发布时间:2023-11-29 01:39来源:www.sf1369.com作者:宇宇
这只是一个说明性语言,让别人知道你的思想,甚至可以不用写完整的代码,比如:
for(条件)
{
过程
}
这里甚至可以连for都不用,用自然语言表述清楚都可以,记住这只是一种形式,让别人知道你思想的形式
#include<stdio.h>
#include<stdlib.h>
#define mode(hdr) hdr+1
struct student{
struct student *next;
int num;
};
void main()
{
//printf(%d,mode(2));
struct student *hf=NULL;
hf = (struct student *)malloc(sizeof(struct student));//要给指针申请空间
hf->num=10;
printf(%d,hf->num);
}
:SQL(Structured Query Language)结构化查询语言,是一种数据库查询和程序设计语言
自学编程建议从C语言学起,可以说60%~80%的程序员都是从C语言开始的。 编程语言分为结构化程序语言和面向对象的程序语言,其中结构化程序语言要比面向对象的要简单,语法要简单一些,而且也容易理解一点,C语言是经典的结构化编程语言
第一题:
main()
{
char a ,b, c1,c2;
float x ,y;
a = 3;
b =7;
x = 8.5;
y = 71.82;
c1 = ' A' ;
c2 = 'a ';
printf(a= %d b = %d/n,a,b);
printf(x = %f y = %f,x,y);
printf(c1= %c,c2 =%c,c1,c2);
}
qbasic算是程序设计中最简单的一种了,最基本的有:
1.输入、输出:input,print,lprint,data/read等。
2.结构化程序:for循环,do循环等。
3.判断:if语句.select case多分支判断等。
更多可以到相关书籍中寻找。