পোস্টগুলি
Swami vivekananda merit-cum scholarship 2019
- লিঙ্ক পান
- X
- ইমেল
- অন্যান্য অ্যাপ
কবে থেকে শুরু - ১১ই সেপ্টেম্বর ২০১৯ । শেষ - ১৫ ই নভেম্বর ২০১৯ । কারা অ্যাপ্লাই করতে পারবে -- যারা উচ্চ-মাধ্যমিকে ৭৫% -এর উপরে নম্বর পেয়েছে । কোথায় অ্যাপ্লাই হবে -- নেট-ক্যাফেতে অ্যাপ্লাই করতে কী কী লাগবে - - ১. মাধ্যমিকের ডকুমেন্টস্ ২. উচ্চ-মাধ্যমিকের ডকুমেন্টস্ ৩. ফ্যামিলির বাৎসরিক ইনকাম-সার্টিফিকেট ৪. আধার বা যে-কোনো রেসি-ডেন্সিয়াল সার্টিফিকেট ৫. ছবি ও সহি ৬. ক্যাফের-ব...
How to print using C programming By Kanai
- লিঙ্ক পান
- X
- ইমেল
- অন্যান্য অ্যাপ
Have you any problem? Contact with me (Link has been given bellow). //please don't copy this, this is only for learn #include<stdio.h> #include<conio.h> main() { // clrscr(); int num1,num2,i; printf("Enter your first number,from where it will be start"); scanf("%d",&num1); printf("Enter last number , where it will be stopped"); scanf("%d",&num2); for(i=num1;i<=num2;i++) { printf("%d\n",i); } getch(); }
How to make calculator using C Programming by Kanai
- লিঙ্ক পান
- X
- ইমেল
- অন্যান্য অ্যাপ
Result of cal calculator If you have any problem you can contact on my facebook page or whatsaap group (Link has been given bellow). //please do not copy this, this is only for learn. #include<stdio.h> #include<conio.h> main() { // clrscr(); float num1,num2,result; char op; printf("Enter your first number"); scanf("%f",&num1); printf("Enter your operator as + - * / \n"); scanf(" %c",&op); printf("Enter your second number"); scanf("%f",&num2); switch (op) { case '-': result=num1-num2; printf("Your result is %f",result); break; case '+': result=num1+num2; printf("Your result is %f",result); ...
Write a program enter any two numbers and find out the highest by Kanai
- লিঙ্ক পান
- X
- ইমেল
- অন্যান্য অ্যাপ
Write a program for add 2 numbers(programmers depend & user depends)kanai
- লিঙ্ক পান
- X
- ইমেল
- অন্যান্য অ্যাপ
Welcome friends to my youtube channel Ks Editing and Printing . Here I am trying to discus about any help about computer . If you have any confusion about any types of computer , you can comment bellow or you can ask me on whatsapp group or facebook page. My facebook page is : https://facebook.com/ksandroid/ /*this program is for programmer basis */ #include<stdio.h> #include<conio.h> void main() { clrscr();//for clear the screen int first,second,third; first=10; second=20; third=(first+second); printf("Your addition result is %d",third); getch(); } /*this program is for User basis */ #include<stdio.h> #include<conio.h> void main() { clrscr();//for clear the screen int first,second,third; scanf("%d %d",&first,&second); third=(first+second); printf("Your addition result is %d",third); getch(); }