@morningdot-6Xuj4M
•
Oct 21, 2024
Oct 21, 2024
987
Doubt in pointing a variable in c.
hello friend's,
Check these codes...
#include<stdio.h>
void main()
{
int *x,p=4;
x=&p;
printf("%d",*x);
}
and the 2nd one goes here...
#include<stdio.h>
void main()
{
char c[]="mohit kumar singh";
char *str;...