Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<div id="app"> | |
<div id="app"> | |
<nav> | |
<div class="nav-wrapper center-align blue darken-2"> | |
<a href="#" class="brand-logo">My Blogs</a> | |
</div> | |
</nav> | |
<!-- Form --> | |
<div class="row"> |
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
class Shape { | |
area() { | |
return 0; | |
} | |
toString() { | |
return Object.getPrototypeOf(this).constructor.name; | |
} | |
} | |
class Circle extends Shape { |
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 <windows.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
char a; | |
int i=200,j=50,k=500,l=150; | |
int b,f,p,s,bill=0,total_bill=0; | |
int n,N; | |
int r,w; |