Skip to content
View 200101130004's full-sized avatar
Block or Report

Block or report 200101130004

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories

  1. Md-Asif-Raza Md-Asif-Raza Public

  2. DataStructure DataStructure Public

    C++

  3. implementation-of-stack-using-array implementation-of-stack-using-array Public

  4. implementation-of-using-array implementation-of-using-array Public

    #include <iostream> using namespace std; int stack[100], n=100, top=-1; void push(int val) { if(top>=n-1) cout<<"Stack Overflow"<<endl; else { top++; stack[top]=val; } } void pop() { if(top<=-1) co…

  5. implementation-of-stack-usi-array implementation-of-stack-usi-array Public

    #include <iostream> using namespace std; int stack[100], n=100, top=-1; void push(int val) { if(top>=n-1) cout<<"Stack Overflow"<<endl; else { top++; stack[top]=val; } } void pop() { if(top<=-1) co…

  6. My-Portfolio.github.io My-Portfolio.github.io Public template

    CSS