using structures in c programming || c-program-examples
- Blogger Comment
- Facebook Comment
Subscribe to:
Post Comments
(
Atom
)
Download Popular software Installers and download Mobile and Android Applications from softwaresetups.com. get best deals on internet like free offers.
#include <stdio.h> struct programming { float constant; char *pointer; }; main() { struct programming variable; char string[] = "Programming in Software Development."; variable.constant = 1.23; variable.pointer = string; printf("%f\n", variable.constant); printf("%s\n", variable.pointer); return 0; }
0 comments:
Post a Comment