Why do we use null pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What math functions are available for integers? For floating point?
What are the difference between a free-standing and a hosted environment?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
State the difference between realloc and free.
How can I change the size of the dynamically allocated array?
What is an endless loop?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Can we replace the struct function in tree syntax with a union?
Write any data structure program (stack implementation)