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 HTML5(experimental)> | |
<html> | |
<head> | |
<title> | |
Jacked Phones | |
</title> | |
<link rel="stylesheet" type="text/css" href="WebPageScreen.css"> | |
<style> | |
img { |
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
# ************************************************************************ | |
# * Program name : sieve * | |
# * Description : this program prints all the prime numbers below 1000 * | |
# ************************************************************************ | |
.bss | |
NUMBERS: .skip 1000 # memory space for the number table | |
.text | |
formatstr: .asciz "%d\n" # format string for number printing |
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
1 .bss | |
2 NUMBERS: .skip 1000 | |
3 | |
4 .text | |
5 formatstr: .asciz "%d\n" | |
6 | |
7 .global main | |
8 | |
9 main: | |
10 movq %rsp, %rbp |
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> | |
using namespace std; | |
struct Person | |
{ | |
string name; | |
string room; | |
}; |
NewerOlder