Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Marko Stojanović

Pages: [1]
1
CS225 Diskusje o nastavnim temama / CS225 - L15
« on: December 16, 2015, 04:51:03 PM »
Kolege, Android vs. iOS, misljenja? :D

2
CS225 Diskusje o nastavnim temama / CS225 - L09
« on: December 16, 2015, 04:29:58 PM »
Kolege, treba mi pomoc oko analize sledeceg programa:

char string [] = “hello”
main
{
char buf[1024];
char *cp1, cp2*;
int fds[2];
cp1= string;
cp2=buf;
while (*cp1)
*cp2++ = *cp1++; /* popuna bafera "buf" sa stringom hello */
pipe(fds);
for (;;)
{
write(fds[1], buf, 6);
read(fds[0], buf, 6);
}
}

3
CS225 Diskusje o nastavnim temama / CS225 - L01
« on: December 16, 2015, 04:12:26 PM »
Kolege, koja je po vama najbolja distribucija Linuxa?
:)

Pages: [1]