Kurs programowania w C cz. 100
- Politechnika Poznańska
- Informatyka
można odnosić się do elementów tablicy jeszcze w inny sposób: printf ("%d\n", 1[tab]); Skąd ta dziwna notacja...
Ta witryna wykorzystuje pliki cookie, dowiedz się więcej.
można odnosić się do elementów tablicy jeszcze w inny sposób: printf ("%d\n", 1[tab]); Skąd ta dziwna notacja...
130 ROZDZIAŁ 18. NAPISY printf("%s", tekst); Większość funkcji działających na napisach znajduje...
!= '\n' ) /* null body */ ; } Modified code int x; char st[31]; printf("Enter an integer: "); scanf("%d...
; t = time(NULL); printf("The number of seconds since January 1," " 1970 is %ld\n",t); newTime...
*string2 = "onm"; char *ptr; ptr = strpbrk(string1, string2); if (ptr) printf("strpbrk found first...
Conditions - examples • if (a>b) printf(”yes!\n”); • if (a>b && b>c) ... • if (2+a == 3*b...
number of lines so far */ while ((c = getchar()) != EOF) if (c == '\n') /* new line found */ nl++; printf...
"; strncpy(string, str1, 3); string[3] = '\0'; /* otherwise '\0' would be missing */ printf("%s\n", string...
); printf("The substring is: %s\n", ptr); return 0; } /* The substring is: ramming */ ...
liczby od 1 do 10. for(i=1; i