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] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
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 | |
phpinfo(); | |
// Added some comments to this file | |
?> |
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
XDEBUG EXTENSION FOR PHP | DOCUMENTATION | INSTALLATION | |
home | updates | download | documentation | contributing | license | support | issue tracker |
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 <cstdlib> // For rand and srand | |
#include <ctime> // For the time function | |
using namespace std; | |
// Function prototype | |
int* getRandomNumbers(int); | |
int main() | |
{ |
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
/********************************************************************* | |
Author: Tajeshwar Singh Khara | |
Date: 21 September 2018 12:06:23 | |
Description: Pointers to class objects and structures as parameters of | |
functions. | |
*********************************************************************/ | |
#include <iostream> | |
#include <string> | |
using namespace std; |
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
// Example 40 | |
// https://www.youtube.com/watch?v=c2qx13d4YG4&list=PL6xSOsbVA1eaxY06L5ZZJfDZSohwO6AKY&index=41 | |
// C++ Example 40 - Dynamic Pointer-pointer array detailed walkthrough | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
void expand(int**& arr, int& cap, int nrOfEl) |
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 <iomanip> | |
#include <string> | |
using std::cout; | |
using std::cin; | |
using std::endl; | |
int main() { |
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 <iomanip> | |
#include <string> | |
using std::cout; | |
using std::cin; | |
using std::endl; | |
int main() { |
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 <iomanip> | |
#include <string> | |
using std::cout; | |
using std::cin; | |
using std::endl; | |
using std::string; | |
string isItANumber(string input="") |
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
// Video: https://www.youtube.com/watch?v=kQIkWDf2XXE&feature=youtu.be | |
#include <iostream> | |
#include <iomanip> | |
#include <string> | |
using std::cout; | |
using std::cin; | |
using std::endl; | |
using std::string; |
OlderNewer