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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <conio.h> | |
| struct node { | |
| int data; | |
| struct node *prev; | |
| struct node *next; | |
| }; | |
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 ng-app="gameApp"> | |
| <head> | |
| <title>Game List</title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> | |
| </head> | |
| <body ng-controller="GameController" ng-init="init()"> | |
| <h1 ng-bind="title"></h1> | |
| <button ng-click="showGames()">Show Games</button> | |
| <ul> |
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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <conio.h> | |
| struct node { | |
| int data; | |
| struct node *prev; | |
| struct node *next; | |
| }; | |
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<stdio.h> | |
| #include<stdlib.h> | |
| #include<conio.h> | |
| struct node | |
| { | |
| int data; | |
| struct node *left; | |
| struct node *right; | |
| }; | |
| struct node*create(int data) |
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<stdio.h> | |
| #include<stdlib.h> | |
| #include<conio.h> | |
| struct node | |
| { | |
| int data; | |
| struct node *left; | |
| struct node *right; | |
| }; | |
| struct node*create(int data) |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.8.2 <0.9.0; | |
| /** | |
| * @title Storage | |
| * @dev Store & retrieve value in a variable | |
| * @custom:dev-run-script ./scripts/deploy_with_ethers.ts | |
| */ | |
| contract Storage { |
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<stdio.h> | |
| #include<stdlib.h> | |
| #include<conio.h> | |
| struct node | |
| { | |
| int data; | |
| struct node *left; | |
| struct node *right; | |
| }; | |
| struct node*create(int data) |
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
| { | |
| "configurations": [ | |
| { | |
| "name": "windows-gcc-x64", | |
| "includePath": [ | |
| "${workspaceFolder}/**" | |
| ], | |
| "compilerPath": "gcc", | |
| "cStandard": "${default}", | |
| "cppStandard": "${default}", |
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
| import java.io.*; | |
| public class CopyNonNumeric { | |
| public static void main(String[] args) throws IOException { | |
| if (args.length < 2) { | |
| return; | |
| } | |
| try (Reader r = new FileReader(args[0]); | |
| Writer w = new FileWriter(args[1])) { | |
| int ch; |
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
| import java.io.*; | |
| class slip1 | |
| { | |
| public static void main(String[] args) { | |
| char ch; | |
| for(ch = 'A'; ch <= 'Z';ch++) | |
| System.out.println("the alphabets are :"+ch); | |
| } | |
| } |
OlderNewer