Giter VIP home page Giter VIP logo

creatshare-anniversary's People

Contributors

jihangguo avatar likeshan avatar mucheng910 avatar muqiu7890 avatar obligat avatar wolfgirlm avatar zhangxinle avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

creatshare-anniversary's Issues

Pen-Test-2017

技术类

  • 加分:将笔试题答案提交到 github 上对下方仓库链接进行 Pull Request:

https://github.com/creatshare-demos/CreatShare-5th-Anniversary.git

基础部分

  1. 尝试说明 char *s = ”aaa”char s[]=”aaa”的区别。
  2. 如何理解面向对象编程。
  3. 简述一下Tcp的三次握手与四次挥手。
  4. 简述你对OSI七层协议模型和TCP/IP四层模型的理解。
  5. 64位机下该结构体所占的内存大小是多少?
struct test_t {
    int a; 
    char b;
    short c;
    char d[6];
};
  1. 请问以下代码有问题吗?没有的话输出是什么,有的话解释其原因。
int main () {
    int x,a,b = 17;
    x = scanf("%d",a);
    printf("%d,%d,%d,%d\n", 2017, a, x, printf("%d\n", b));
    return 0;
}
  1. 下列哪些可以表示 a[1][1] 。
*(&a[0][0]+5)
*(*(a+1)+1)
*(&a[1]+1)
*(a[1]+1)
  1. 下列代码运行结果
int a[]={1,2,3,4};
int *b=a;
*b+=2;
*(b+2)=2;
b++;
printf("%d,%d\n",*b,*(b+2));
  1. 常见的排序算法有哪些?请尽可能多的用 C 语言实现。
  2. 使用 C 语言定义一个实现字符串拼接的函数。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.