This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| #include<cmath> | |
| #include<math.h> | |
| using namespace std; | |
| class Cartesian{ | |
| private: | |
| float xCo, yCo; | |
| public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Q. Write a program with class Distance to realize following main method. | |
| // [Internal 2018 Spring - GCES] | |
| #include<iostream> | |
| using namespace std; | |
| class Distance{ | |
| private: | |
| int cm; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $conn = mysqli_connect("localhost","root",""); | |
| if(!$conn){ | |
| die("Host connection failed.<br/>"); | |
| }else{ | |
| echo "Host connected.<br/>"; | |
| } | |
| $create_db = "CREATE DATABASE authentication"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Register</title> | |
| </head> | |
| <body> | |
| <form action="#" method="POST" id = "myform"> | |
| <fieldset> | |
| <legend>Fill up the form</legend> | |
| <label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| #include<conio.h> | |
| using namespace std; | |
| template<class X> | |
| class Stack{ | |
| private: | |
| X index; | |
| X pile[100]; | |
NewerOlder