26.09.2015 Views

PROGRAMSKI JEZICI 2

Предавање 1

Предавање 1

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Funkcije tipa “strcpy() i strncpy()”<br />

• Ovo su nasleđene f-je iz bibliotele C jezika I služe za kopiranje jednog stringa u drugi:<br />

strcpy(string2,string1) i<br />

strncpy(string2,string1,MaxLength)<br />

Obavezno zahtevaju pozivanje hederske funkcije string.h.<br />

#include<br />

#include<br />

int main()<br />

{<br />

char String1[]=“Covek nije ostrvo”;<br />

char String2[80];<br />

strcpy(String2,String1);<br />

cout

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!