Skip to content

Instantly share code, notes, and snippets.

@ahoulgrave
Created April 17, 2013 13:17
Show Gist options
  • Save ahoulgrave/5404216 to your computer and use it in GitHub Desktop.
Save ahoulgrave/5404216 to your computer and use it in GitHub Desktop.
scanf
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int n_Dias;
char s_Especialidad[50];
n_Dias = 20;
printf("%d dias\n",n_Dias);
scanf("%d", &n_Dias);
printf("%d dias\n",n_Dias);
printf("Ingresa una especalidad\n");
scanf("%s",&s_Especialidad);
printf("Especialidad: %s\n",s_Especialidad);
system("PAUSE");
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment