Month: May 2017

17
May
2017

USD to BDT function in C

code: #include<stdio.h> double dollarToBDT(double usd) { usd=usd*78.55; return usd; } int main() { double tk, usdollar; while(printf(“Type…

17
May
2017

Find Max Value From 3 Parameters Using Function

code: #include<stdio.h> int findMax(int a,int b,int c) { int max; if(a>=b && a>=c) return a; else if(b>=a…

17
May
2017

True Story About Life – Dream Big, Work Hard

17
May
2017

Heading Towards My Journey To Data Science Strongly..The sexiest job of 21st century

Chatbot: https://chatbotslife.com/machine-learning-for-dummies-part-1-dbaca076ec07 Sentiment Analysis, Natural Language Processing: https://medium.com/udacity/natural-language-processing-and-sentiment-analysis-43111c33c27e

17
May
2017

Function Calculator

code: #include<stdio.h> double add(double a,double b) { double sum; sum = a+b; return sum; } double subtract(double…

17
May
2017

Function Divisor

code: #include<stdio.h> void func(); int main() { func(); } void func() { int n,i; scanf(“%d”,&n); printf(“\n”); for(i=1;…