Arista Networks Interview Report
- 0of 0 votes
Answers#include <stdio.h>
- ds March 22, 2021 in India
#include <stdlib.h>
#include <assert.h>
void my_free(char *p) {
free(p);
p = NULL;
}
int main() {
char *p = (char*) malloc(100);
my_free(p);
assert(p == NULL);
}
Will this code work? or crash| Report Duplicate | Flag | PURGE
Arista Networks Software Developer - 0of 0 votes
Answersinsert node to Binary search tree(BST) both recursively and iteratively.
- ds March 22, 2021 in India| Report Duplicate | Flag | PURGE
Arista Networks Software Developer
CareerCup is the world's biggest and best source for software engineering interview preparation. See all our resources.
Open Chat in New Window
Open Chat in New Window