wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / khajasirajuddin shaik
int is datatype which specifies integer type of data,where as int pointer specifies the address of an integer type variable
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is a char in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is table lookup in c?
Why is c fast?
What is difference between union and structure in c?
If the size of int data type is two bytes, what is the range of signed int data type?
Is c language still used?
What is maximum size of array in c?
What is const keyword in c?
Why does everyone say not to use gets?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
can we implement multi-threads in c.
Tell me with an example the self-referential structure?