What is ponter?
No Answer is Posted For this Question
Be the First to Post Answer
regarding pointers concept
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
how to find out the reverse number of a digit if it is input through the keyboard?
Can we initialize extern variable in c?
how to set Nth bit of variable by using MACRO
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is malloc calloc and realloc in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What does it mean when a pointer is used in an if statement?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Difference between strcpy() and memcpy() function?