196 views
0 votes
0 votes
What will be value inside an unintialized pointer eg case1:

main(){

Int *p;//local

}

Or case2:

Int *p;// global

Main(){

}

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
2
Kiran Karwa asked Dec 8, 2017
360 views
a and &a are the same thing where a is array name? I am unable to understand diff between (a+1) and (&a+1) when assigned to a pointer #include <stdio.h>int main(){ in...
1 votes
1 votes
3 answers
4
UK asked Mar 15, 2016
727 views
What is the difference when I write in program mynode * head; add_node(&head,10); add_node( struct node head, into value);To this mynode *head; add_node (head,10); add_...