#include <stdio.h> int absolute(int num); int main() { int x=-12,y; y=absolute(x); printf("the absolute value of %d is %d \n.", x, y); }