Explain the Difference between the New and Malloc keyword.
No Answer is Posted For this Question
Be the First to Post Answer
hat is a pointer?
How can a process change an environment variable in its caller?
do you think its fraud or original company?
what is the output of printf("%d",(scanf("%d",10));
What is volatile, register definition in C
What are all different types of pointers in c?
write a method for an array in which it can display the largest n next largest value.
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
What is calloc malloc realloc in c?
Can the size of an array be declared at runtime?
What are the 4 types of functions?