#include "../../routines/machine.h"
Include dependency graph for ex1c.c:
Go to the source code of this file.
Definition at line 4 of file ex1c.c.
References a, b, and n.
00007 { 00008 int k; 00009 for (k = 0; k < *n; ++k) 00010 c[k] = a[k] + b[k]; 00011 return(0); 00012 }