Sunday, 20 October 2013

Panoramio Javascript API Widget 2

This is Panoramio JavaScriptt API. Panoramio JavaScriptt API let you customize it. var myRequest = { 'tag': 'austria', 'rect': {'sw': {'lat': -30, 'lng': 10.5}, 'ne': {'lat': 50.5, 'lng': 30}} }; var myOptions = { 'width': 600, 'height': 500 }; var wapiblock = document.getElementById('wapiblock'); var photo_widget = new panoramio.PhotoWidget('wapiblock', myRequest, myOptions); photo_widget.setPosition(0); This is complete Code for Panoramio JavaScriptt API widget.It does not show in composing...

Panoramio Javascript API Widget example 1

this is Panoramio JavaScript API Widget example. #div_attr_ex .panoramio-wapi-images { background-color: transparent; } #div_attr_ex .pwanoramio-wapi-tos{ background-color: transparent !important; } function increase () { var temp = parseInt (document . apple . banana . value); if (isNaN (temp)) return; if (temp>=0 ) { attr_ex_photo_widget.setPosition(temp); document . apple . banana . value = temp; label = {'tag': 'austria'}; } else { attr_ex_photo_widget.setPosition(0); document...

Tuesday, 8 October 2013

insert at start and end in Link list by head and tale method with clases in c++

In this program user can insert data at start and end in link list by using head and tale method.user can also display and search data in link list.It is complete program with Menu.   #include<iostream> using namespace std; class Node{ public: int data; Node *nextptr; }; class Linklist { Node *head; Node *tale; public: Linklist(); Node* insertAtStart(int element); Node* insertAtEnd(int element); ~Linklist(); ...

Thursday, 3 October 2013

print Array in C++

#include<iostream> using namespace std; void main() { int aray[5]={1,2,3,4,5}; cout<<"Array elements are \n" <<aray[0]<<"\n" <<aray[1]<<"\n" <<aray[2]<<"\n" <<aray[3]<<"\n" <<aray[4]<<endl; system("pause"); } ...

Print Array in C Language

#include<stdio.h> #include<stdlib.h> void main() { int aray[5]={1,2,3,4,5}; printf("array element are =  %d,%d,%d,%d,%d\n" ,aray[0],aray[1],aray[2],  aray[3],aray[4]) ; system("pause"); } ...