python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why is am getting wrong output while converting infix expression (without parentheses) to prefix expression?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct stack {
int tos;
char arr[21];
} stack;
void push(stack*, char);
char pop(stack*);
void convert(ch...

pratik jain
Votes: 0
Answers: 0
Creating paired array based on file name prefix match in bash
I'm trying to create a for loop / while loop in bash which uses two different files (with same prefix). For example:
/home/samples - Contains files A-anything.fq B-anything.fq etc
/home/annotation - C...

Gabriel G.
Votes: 0
Answers: 1
How can I get a custom delimiter used for an S3 bucket?
As it is mentioned on this page, one can specify a custom delimiter for organizing their keys in a S3 bucket.
I am writing some code where I want to concatenate directory and file names together, and ...
MattSt
Votes: 0
Answers: 1
Angular routing for prefix with route parameter
I want to implement the user profile page. It would be simple to just use the
/profile/user123 path using:
app-routing.module
{
path: 'profile',
loadChildren: () => import('./modules/profile/pr...
Tomas Lukac
Votes: 0
Answers: 3