What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
Why malloc is faster than calloc?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What is printf () in c?
Can we use visual studio for c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What is the use of bit field?
how to find the kth smallest element in the given list of array elemnts.
why do some people write if(0 == x) instead of if(x == 0)?
Hi can anyone tell what is a start up code?
Why is this loop always executing once?
what is the output of printf("%d",(scanf("%d",10));
What is a C array and illustrate the how is it different from a list.