#include <unistd.h>
#include <stdlib.h>
#include <curses.h>
int main() {
initscr();
move(5,15);
printw("%s","Hello World");
refresh();
sleep(2);
endwin();
exit(EXIT_SUCCESS);
}
How to write a program which does not echo user input to the screen ?
How to write a program which can print the name of the user logged in on the controlling terminal of the process ?
Working With Files II
Working With Files I
Screenshots related to ( view menu ) in Blender Software
[easy_image_gallery]
screenshot of zoom using blender
Graph for Sorting Plotted using R
The following graph shows the time details to execute a sorting algorithm written in python.Array size for sort is 200.

The values for plotting the above graph is taken from the following readings.
Sat May 24 18:48:25 IST 2014 real 0m0.032s user 0m0.028s sys 0m0.000s real 0m0.027s user 0m0.020s sys 0m0.004s real 0m0.029s user 0m0.024s sys 0m0.000s real 0m0.030s user 0m0.024s sys 0m0.000s real 0m0.027s user 0m0.020s sys 0m0.000s
Graph for Sorting plotted using R
The following graph shows the time details to execute a sorting algorithm written in python.

The values for plotting the above graph is taken from the following readings.
Fri May 16 21:36:17 IST 2014 real 0m0.019s user 0m0.016s sys 0m0.000s real 0m0.021s user 0m0.016s sys 0m0.004s real 0m0.024s user 0m0.020s sys 0m0.000s real 0m0.020s user 0m0.012s sys 0m0.004s real 0m0.024s user 0m0.012s sys 0m0.008s
R shell session to plot a Graph
The following is a R shell session to plot a graph.
$R
R version 3.0.3 (2014-03-06) -- "Warm Puppy"
Copyright (C) 2014 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
> timereal timeuser timesys timedata png(filename="barplot-array-size-100-python.png")
> barplot(timedata,col=rainbow(5))
Fontconfig warning: "/etc/fonts/conf.d/65-droid-sans-fonts.conf", line 103: Having multiple values in isn't supported and may not work as expected
Fontconfig warning: "/etc/fonts/conf.d/65-droid-sans-fonts.conf", line 138: Having multiple values in isn't supported and may not work as expected
> dev.off()
null device
1
>
