Skip to content

Instantly share code, notes, and snippets.

@narenpertuz
narenpertuz / SegundaPruebaV1.cpp
Created May 27, 2021 18:20
Segunda prueba tecnica de Naren Pertuz Vides
#include <stdio.h>
int main(){
FILE *fichero = NULL;
char c, aux;
fichero = fopen("input.txt", "r");
if(fichero == NULL ) {
printf("No fue posible abrir el archivo\n");
return -1;
@narenpertuz
narenpertuz / Ejercicio.cpp
Last active May 20, 2021 21:36
Prueba tecnica de Naren Pertuz Vides para Kommit
// Por favor digitar valores de tipo Float. Ejemplo: 1.2
// Naren Pertuz Vides - Ingeniero de sistemas
#include<stdio.h>
#include<stdlib.h>
int main(){
float coord;