下列语句中,正确的是()
typedef v1 int;
typedef v2=int;
typedef int v3;
typedef int=v4;
基本数据类型符的自定义的格式:typedef 基本数据类型符 用户类型符;,即typedef int v3;符合基本数据类型符的自定义的格式。