I'm trying to learn structs and have the following code below in the .h and .c files respectively.
typedef struct{
int lengthOfSong;
int yearRecorded;
} Song;
Song makeSong (int length, int year);
void displaySong(Song theSong);
.c:
Song makeSong(int length, int year){
Song newSong;
newSong.lengthOfSong = length;
newSong.yearRecorded = year;
displaySong(newSong);
return newSong;
}
void displaySong(Song theSong){
printf("This is the length of the song: %i \n This is the year recorded: %i", theSong.lengthOfSong, theSong.yearRecorded);
}
For some reason i'm getting the error: song.c:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘attribute’ before ‘makeSong’ song.c:11: error: expected ‘)’ before ‘theSong’
Am I doing something wrong?
Edit main (the other functions were already working):
#include <stdio.h>
#include "math_functions.h"
#include "song.h"
main(){
int differ = difference(10, 5);
int thesum = sum(3, 7);
printf("differnece: %i, sum: %i \n", differ, thesum);
Song theSong = makeSong(5, 8);
}
#include "song.h"? – Tom Zych Mar 24 '11 at 21:55#include "song.h"in the .c file which containsSong makeSong(int length, int year){? Looks like not, as the cited line is the 1st, according to the compiler error message. – Vlad Mar 24 '11 at 22:04