- all programms & codes are developed during M.Sc (Bioinformatics) for the paper, 'Programming in C' , Semester-II, Year-2010-2011.
- all coding done on last corner Windows (Vista) desktop, near window, in practical Lab No.1 at Bioinformatics Center, University of Pune, Pune.
- haramiKaMall-ATM :- an interactiv ATM trasaction - funny.
- alphNumericKashish :- an interactive program for printing Alphabets & Numbers on console.
- aakashMeATGC :- stars in the sky. NOTE : may run on specific machines with specific configurations only.
- Other :- all are some imaginary or realistic objects/shapes, printed using starts & some ASCII characters.
-
for windows user,open file in Dev C++ / CodeBlocks, compile & Run.
-
for Linux user, comment below two line, like
// #include<conio.h> // getch();
compile & run as
gcc -Wall helloWorld.c -o helloWorld ./helloWorld
-Wall
enables all compiler’s warning messages (recommended to generate better code)-o
to specify output file name. If we do not use this option, then an output file with name a.out is generated.
-
Comment below two line, like
// #include<conio.h> // getch();
-
simply copy code into IDE , select
C
compiler & click onRun
button.