Calico
Friday, May 19, 2017
Lab 1 Task 7 (not done)
#include <stdio.h>
int main (void)
{
int result = 0;
float i = 0;
scanf (%f, &i);
while (result != EOF)
{
scanf(%f, &i);
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Lab 3: Tasks 1-3
/* * imageops.c - Simple operations on images * * C laboratory exercises. * Richard Vaughan, 2014. */ #include <assert.h> #includ...
arrLength
#include<stdio.h> #include<stdlib.h> #include"list.h" int arrLength(list_t* list) { if(list->head == NULL) ...
No comments:
Post a Comment