你认为自己的的水平到达了什么程度,不如测试一下吧

出点题目考验下大家的水平
1、小李编写了下面的程序,并征求你的意见。请帮助他评定。
include studio.h
int main { void} /*该程序打印一年有多少周/*
{
    int s

    s := 56;
    print (There are s weeks in a year . ) ;
    return 0;

2、在main、int、 function、char、=中,哪些是C语言的关键字?
3、如何以下面的格式输出变量words和lines的值(这里,3020和350代表两个变量的值)?
There were 3020 words and 350 lines.

4、考虑下面的程序:

#include 
int main (void)
{
int a, b;
a = 5;
b = 2; /*第7行*/
b = a; /*第8行*/
a = b; /*第9行*/
printf ( "%d %d\n",b,a) ;
return 0;
}

请问,在执行完第7、第8、第9行后,程序的状态分别是什么?

第4个输出两个2