#include <iostream.h>
{
int 1="hello\n";
int 2="i'm Mr.Li\n";
int 3="how are you\n";
int 4="you are shit\n";
int 5="you are shit\n";
int 6="you are shit\n";
ofstream a("about.txt");
a<<1<<endl<<2<<endl<<3<<endl<<4<<endl<<5<<endl<<6<<endl;
}
error C2447: missing function header (old-style formal list?)
急啊 现在没什么分了
VC++ missing function header (old-style formal list?)
少了函数头,如int main()。而且数字不能作为变量名,字符串应该是string(在头文件string中)或char*类型。你不是学C++的吧?
...报错missing function header (old-style formal list?),怎么办...
c++编程中出现“missing function header (old-style formal list?)”是(编译错误)缺少函数标题(是否是老式的形式表?)分析:函数定义不正确,函数首部的“( )”后多了分号或者采用了老式的C语言的形参表。例如:# include <stdio.h>void main(){int max(int x,int y,int z);int a,b,c,d...
...missing function header (old-style formal list?)
void point(char *name[],int n);去掉后面的分号 这里是函数的定义,不是声明
...missing function header (old-style formal list?)”错误时什 ...
没有发现合适的头文件(过旧的版本)
...显示missing function header (old-style formal list?)
include<iostream> include<cmath> using namespace std;double d[502];double a[6][502];double b=0.160;double c=-0.064;double m=0;double x[1000];double s=0;double p=0;int i,j;double lu(double a[6][502]){ int t,k,i,j,min,max;for(k=1;k<=501;k++){min=k+2...
vc++编译问题 missing function header?
分类: 电脑\/网络 >> 程序设计 >> 其他编程语言 问题描述:d:\\学习\\c++\\msdev98\\myprojects\\925perm\\925perm.cpp(24) : error C2447: missing function header (old-style formal list?)执行 cl.exe 时出错.解析:缺失函数头 如果只有这一个错误 看看main函数有什么问题 如果这是好多错误中一个...
...出现missing function header (old-style formal list?)是怎么回事...
应该使用了很早以前的C写法,比如函数 fun()int a { ...}
...missing function header (old-style formal list?)什么意思,要怎么...
include<iostream> include<string> using namespace std;void sorf(int s[]); \/\/这里不要分号 { int i,j;int temp;for(i=0;i<n;i++)for(j=0;j<n;j++)if(s[j]>s[j+1]){temp=s[j];s[j]=s[j+1];s[j+1]=temp;} } void sorf(long s[]);{int i,j;long temp...
在VC++6.0中,总是出现一个叫error spawning c1.exe的错误,怎么回事呢...
C2447: missing function header (old-style formal list?)This error usually results from a missing { or use of a ; instead of a { following the parameter list of a function header.---C2511: '<function-name>' : overloaded member function not found in '<class-name>'This error results fr...
关于栈的old-style formal list?问题
void park (zhan *x, zhan*s) \/\/这里多了一个分号,去掉这个分号编译能继续, 但是有一些语法错误, 都是因为zhan这个struct没有这个成员, 单是你却引用了, 这个就不能帮你改了, 不了解你想要什么成员,感觉也不难改了,自己看看吧...