study/C_C++/sources/c_and_pointer/chapt2/practise/negate.c

11 lines
104 B
C
Raw Normal View History

2020-02-23 14:23:40 +00:00
#include <stdio.h>
/**
*
*
*/
int negate1 ( int num )
{
return 0 - num;
}