লাইব্রেরী ফাংশন

ফাংশন হচ্ছে পুনরায় ব্যবহার যোগ্য কোড ব্লক। যা একটি নির্দিষ্ট কাজ করতে পারে। সি প্রোগ্রামিং এর সাথে  এমন অনেক গুলো ফাংশন দেওয়া আছে। যে গুলোকে বলা হয়  লাইব্রেরী ফাংশন। যেমন printf একটি ফাংশন, যার কাজ কোন কিছুর আউটপুট দেখা। আমাদের প্রতিটা প্রোগ্রামের শুরুতেই #include<stdio.h> লেখাটি যুক্ত করি। যার মানে আমরা এর আগেই জেনে এসেছি। মানে হচ্ছে Standard Library Functions টি যুক্ত করা। যেমন আমরা printf ব্যবহার করি, এটি হচ্ছে Standard I/O Functions এর একটা ফাংশন। Standard I/O এ আরো কিছু ফাংশন রয়েছে, যেমনঃ scanf(), getchar(), putchar() ইত্যাদি। এ গুলো সম্পর্কে পরবর্তী চ্যাপ্টার গুলো থেকে জানা যাবে।
নিচে কিচু include file এবং তাদের ফাংশন গুলো দেওয়া হলো। প্রতিটি include file এর ব্যবহার সম্পর্কে বিস্তারিত লেখা লিঙ্কে যুক্ত করা হয়েছে। লিঙ্ক থেকে বিস্তারিত উদাহরণ সহ দেখে নেওয়া যাবে।

কোন ফাংশনে যে মান পাস করা হয়, সে গুলোকে বলা হয়  আর্গুমেন্ট/Argument। কোন কোন লাইব্রেরী ফাংশন কোন Argument ছাড়াই কাজ করে। কোন কোন ফাংশন একটি Argument নেয়। আবার কোন কোন ফাংশন একের অধিক Argument নিয়ে কাজ করে।

stdio.h: I/O functions:

  1. getchar() returns the next character typed on the keyboard.
  2. putchar() outputs a single character to the screen.
  3. printf() as previously described
  4. scanf() as previously described

নিচের দুইটি লিঙ্ক থেকে getchar & putchar এবং scanf & printf সম্পর্কে বিস্তারিত জানা যাবে।

 

string.h: String functions

  1. strcat() concatenates a copy of str2 to str1
  2. strcmp() compares two strings
  3. strcpy() copys contents of str2 to str1

String কি, এর লাইব্রেরী ফাংশন গুলো নিয়ে বিস্তারি জানা যাবে এখান থেকেঃ C – Strings / স্ট্রিং

 

ctype.h: Character functions

  1. isdigit() returns non-0 if arg is digit 0 to 9
  2. isalpha() returns non-0 if arg is a letter of the alphabet
  3. isalnum() returns non-0 if arg is a letter or digit
  4. islower() returns non-0 if arg is lowercase letter
  5. isupper() returns non-0 if arg is uppercase letter

math.h: Mathematics functions

  1. acos() returns arc cosine of arg
  2. asin() returns arc sine of arg
  3. atan() returns arc tangent of arg
  4. cos() returns cosine of arg
  5. exp() returns natural logarithim e
  6. fabs() returns absolute value of num
  7. sqrt() returns square root of num

 

time.h: Time and Date functions

  1. time() returns current calender time of system
  2. difftime() returns difference in secs between two times
  3. clock() returns number of system clock cycles since program execution

 

stdlib.h:Miscellaneous functions

  1. malloc() provides dynamic memory allocation, covered in future sections
  2. rand() as already described previously
  3. srand() used to set the starting point for rand()