Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* T5 zadatak 5 - Šta ispisuje sledeći program? u komentarima */
- #include <stdio.h>
- #include <string.h>
- int main(){
- static char ime[]="Bingo";
- char *pok;
- pok = ime+strlen(ime);
- while(--pok>=ime){
- puts(pok);
- }
- // o
- // go
- // ngo
- // ingo
- // Bingo
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment