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.
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 ();
}
Comments
Post a Comment