65,186
社区成员




#include <iostream>
#include <string>
using namespace std;
struct CandyBar
{
char * Name;
double Weight;
int cal;
};
template <> void Fill(CandyBar & c1,CandyBar & c2);
int main()
{
return 0;
}
template <> void Fill(CandyBar & c1,CandyBar & c2)
{
}