Advertisement
2002ASP Coding Standards #7935

AA!!!Name and age!!!AA

You enter your name and age and then it displays it for you!!!! By the way im just experimenting and im a NEWBIE at C!!! Vote for it if u like.

AI

Resumo por IA: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Código fonte
original-source
#include <stdio.h>
int main()
{
int a;
char name[15];
printf("Enter your name:",name);
scanf("%s",&name);
printf("Enter your age:");
scanf("%d",&a);
printf("Your name is %s and your %d years old!",name,a);
}
Comentários originais (3)
Recuperado do Wayback Machine