id -u "Username"You can use it in a conditional:
| /* Binary Search Tree Implementation in C */ | |
| /* Harish R */ | |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| struct TreeNode | |
| { | |
| int data; | |
| struct TreeNode* left; |
| /* Doubly Linked List implementation */ | |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| struct Node { | |
| int data; | |
| struct Node* next; | |
| struct Node* prev; | |
| }; |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| #Download Apache and extract it | |
| $ ./configure --help | |
| #You will get a list of options, run with enable-so | |
| $ ./configure --enable-so | |
| $ make |
| #!/bin/sh | |
| set -e | |
| cd "$(git rev-parse --show-cdup)" | |
| # Find all the objects that are in packs: | |
| for p in .git/objects/pack/pack-*.idx | |
| do |