TARIK

Tuesday, May 3, 2016

HTML এর গুরুত্বপুর্ন কিছু Tag

Heading And Pragraph Heading Headings are defined with the < h1 > to < h6 > tags. < h1 > defines the most important heading. < h6 > defines the least important heading. Example: This is a heading This is a heading This is a heading Output: This is a heading This is a heading This is a heading Pragaph The HTML < p > element defines a paragraph. Example: First Pragraph Secound Pragraph Output: ...
Read More »

Wednesday, April 27, 2016

C: Fiend Leargest Number

Source code: #include #include int main() { int a,b; printf("Enter the first value:"); scanf("%d",&a); printf("Enter the Secound value:"); scanf("%d",&b); if(a>b) { printf("The Largest Number is a"); } else printf("The Largest Number is b"); return 0; } Output: Enter the first value: 20 Enter the second Value: 40 The Largest value is b...
Read More »

C:Print Hello world

আমরা একটি প্রোগ্রাম লিখবো যা "Hello World" আউটপুট দেখাবে- #include int main() { printf("Hello World!"); return 0; } আউটপুট: Hello World! ...
Read More »

Tuesday, April 26, 2016

C: সি প্রোগ্রাম কে,কখন,কেন আবিস্কার করেন?

সি সেখার আগে সি কে আবিষ্কার করেন? কত সালে আবিস্কার হয়? কি কারনে আবিষ্কার হয়? সে সব সম্পার্কে জ্ঞান অর্জন করা উচিত তাই সি এর ইতিহাস এক নজরে দেখে নি:- সি একটি প্রোগ্রামিং ভাষা। সি নির্মাণ করেন ডেনিস রিচি, বেল ল্যাবে ৭০এর দশকে কাজ করার সময়(১৯৭২ সালে)। ভাষাটি তৈরির প্রথম উদ্দেশ্য ছিল ইউনিক্স অপারেটিং সিস্টেম-এর কোড লেখায় এর ব্যবহার, কিন্তু অচিরেই এটি একটি বহুল ব্যবহৃত ভাষায় পরিণত হয়। সি++ ও জাভা সহ পরিবর্তীকালের অনেক প্রোগ্রামিং ভাষার উপর সি’র গভীর প্রভাব পড়েছে। সি এর সবচেয়ে...
Read More »

Monday, April 25, 2016

বাংলায় CSS বই

বাংলায় CSS...
Read More »

বাংলায় Java প্রোগ্রামিং বই

বাংলায় Java প্রোগ্রামিং...
Read More »

বাংলায় সি প্রোগ্রামিং বই

বাংলায় সি প্রোগ্রামিং...
Read More »
Tarik Billa