我按照安装说明将ASIHTTPRequest添加到我的项目中,它要求我"编辑活动目标".现在我正在使用Xcode 4,我在任何地方都看不到该菜单项.我在哪里可以编辑我的活动目标?

我在c中为我的大学写了一个字
#include <stdio.h>
void hallo( double );
int main( void )
{
double radius=0;
double umfang=0;
double flaeche=0;
printf("\n Kreisberechnung\n ===============\n");
printf("\nDieses Programm berechnet Umfang und Flaeche"
"\neines Kreises aus einem Radius.\n");
printf("Bitte Radius eingeben: ");
scanf("%lf", &radius);
hallo();
return 0;
}
void hallo( double radius )
{
umfang = 2.0 * radius * 3.14159265359;
flaeche = radius * radius * 3.14159265359;
printf("\nMit Radius = %lf cm wird\n", radius);
printf("der Kreisumfang = %lf cm und\n", umfang);
printf("die Kreisflaeche = %lf …Run Code Online (Sandbox Code Playgroud)