Skip to main content

Posts

Showing posts with the label case

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

C- program (Sequence) lowerToUPPER case

18. Write a program to enter character from a to z or A to Z and convert into lowercase and vice-versa. #include <stdio.h> #include <conio.h> void main () { char ch; printf ("Enter the character:"); scanf ("% c", & ch); if (ch> 64 && ch <94) printf ("% c", ch + 32); else printf ("% c", ch-32);  getch (); }