Tuesday, November 29, 2011

Practice tips 03

টিপস ০3:
Logical Condition handle: লজিকাল কন্ডিশন হ্যান্ডেল করার জন্য আমাদের আগে অপারেটর সমন্ধে ভাল ধারনা থাকতে হবে। C/C++ এ অনেক অপারেটর আছে। Click Operator. কন্ডিশন এর জন্য if else অনেকটা প্রয়োজনীয়। এটির উপরও ভাল ধারনা থাকতে হবে।
Example:
# include<stdio.h>
int main()
{
    int num;
    scanf("%d",&num);
    if(num>0)
    printf("Number is greater than 0");
    else
    printf("Number is not greater than 0");
return 0;
}

লাইব্রেরি ফাংশনগুলোও কিন্তু ভালভাবে আয়াত্ত করতে হবে। Click Library functions.
Next tips>>> 

1 comment:

  1. Write more something for us! Thanks............

    ReplyDelete

Comment of this content!