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://codercto.com/courses/l/17.html