Construct a program that displays values from -10 to 10 and then back down to -10.
#include <stdio.h> int main()/*from www. j ava 2 s . c om*/ { int d; d = -10; while(d<10) { printf("%d ",d); d++; } while(d>=-10) { printf("%d ",d); d--; } putchar('\n'); return(0); }