C 练习实例95
C 语言教程
· 2019-02-22 17:42:48
题目:简单的结构体应用实例。
程序分析:无。
程序源代码:
// Created by www.codercto.com on 15/11/9. // Copyright © 2015年 码农教程. All rights reserved. // #include <stdio.h> struct programming { float constant; char *pointer; }; int main() { struct programming variable; char string[] = "码农教程:http://www.codercto.com"; variable.constant = 1.23; variable.pointer = string; printf("%f\n", variable.constant); printf("%s\n", variable.pointer); return 0; }
以上实例运行输出结果为:
1.230000 码农教程:http://www.codercto.com
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Coding the Matrix
Philip N. Klein / Newtonian Press / 2013-7-26 / $35.00
An engaging introduction to vectors and matrices and the algorithms that operate on them, intended for the student who knows how to program. Mathematical concepts and computational problems are motiva......一起来看看 《Coding the Matrix》 这本书的介绍吧!