c dili

  1. C

    Undefined reference to curl_easy_init gibi hatalar alıyorum

    curl = curl_easy_init(); Mesela bunu yazıyorum şu hata geliyor: undefinied reference to curl_easy init. Curl kütüphanesi yüklü. Online olarak denedim kodu olmadı. include curl.h var.
  2. C

    Bu kodu yazdıktan sonra hiç bir şey çıkmıyor. Code Blocks

    #include <stdio.h> #include <stdlib.h> int main() { int addNumbers(int a, int b , int c) { int total = a + b + c; return total; int main() { int total= addNumbers(10, 20, 30); int lastTotal = addNumbers(total, total, total); printf("lastTotal: %d", lastTotal); getchar(); getchar()...