#include #define KONSTANTA 1 main() { int i=1; char crka='a'; float stevilo=10.21; printf("%d: Naslednik %d je %d. \n", KONSTANTA, i, i+1); printf("%d: %c je crka. \n", KONSTANTA+1, crka); printf("%d: %10.9f je realno stevilo. \n", KONSTANTA+2, stevilo); }