Month: May 2017
code: #include<stdio.h> double dollarToBDT(double usd) { usd=usd*78.55; return usd; } int main() { double tk, usdollar; while(printf(“Type…
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…
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
code: #include<stdio.h> double add(double a,double b) { double sum; sum = a+b; return sum; } double subtract(double…
code: #include<stdio.h> void func(); int main() { func(); } void func() { int n,i; scanf(“%d”,&n); printf(“\n”); for(i=1;…
Recent Comments