Sunday, 17 July 2016

Wednesday, 23 March 2016

Thursday, 17 March 2016

var s1 = new SWFObject ('newplayer/hdplayer.swf', 'player', '640', '360', '9'); s1.addParam ('allowfullscreen', 'true'); s1.addParam ('allowscriptaccess', 'always'); s1.addParam ('autoplay', 'true'); s1.addParam ('wmode', 'transparent'); s1.addVariable('file','http://live1.1dnsgeo.com:1935/live/ptvsports/manifest.f4m'); s1.write ('mediaspace'); Html5 Not support This video Format. function...
Share:

Tuesday, 24 November 2015

C++ code to find table of any number

#include <iostream> using namespace std; int main() { int n; cout << "Enter A Number : "; cin >> n; cout << n << " * " << 1 << " = " << n * 1 << endl; cout << n << " * " << 2 << " = " << n * 2 << endl; cout << n << " * " << 3 << " = " << n * 3 << endl; cout <<...
Share: