[ create a new paste ] login | about

Link: http://codepad.org/qzneddNw    [ raw code | output | fork ]

kamarakay2000 - C, pasted on Jul 8:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
void soup(void);
//{
   // puts("Pea green soup!");
//}
int main()
{
    printf("For breakfast I had");
    soup();
    printf("For lunch I had");
    soup();
    printf("For dinner I had");
    soup();
    return(0);
}
void soup (void);
{
    puts("Pea green soup!")
}


Output:
1
Line 17: error: expected identifier or '(' before '{' token


Create a new paste based on this one


Comments: