September 1998
Intermediate to advanced
848 pages
20h 13m
English
What's wrong with this template?
structure {
char itable;
int num[20];
char * togs
}
Here is a portion of a program. What will it print?
#include <stdio.h>
struct house {
float sqft;
int rooms;
int stories;
char address[40];
};
int main(void)
{
struct house fruzt = {1560.0, 6, 1, "22 Spiffo Road"};
struct house *sign;
sign = &fruzt;
printf("%d %d\n", fruzt.rooms, sign->stories);
printf("%s \n", fruzt.address);
printf("%c %c\n", sign->address[3], fruzt.address[4]);
return 0;
}
Devise a structure template that will hold the name of a month, a three-letter abbreviation for the month, the number of days in the month, and the month number.
Define an array of 12 structures of the sort in Question 3 and initialize it for a non-leap year. ...
Read now
Unlock full access