wt is diference between int and int pointer as same as
float and float pointer and char and char pointer

Answer Posted / ravikumar

int gives the value of the integer but int pointer gives
address of the integer value

Is This Answer Correct ?    38 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When is the “void” keyword used in a function?

838


How many types of sorting are there in c?

614


How can I implement a delay, or time a users response, with sub-second resolution?

625


Which is the best website to learn c programming?

582


What does 3 periods mean in texting?

600






What are the advantages of union?

628


Discuss the function of conditional operator, size of operator and comma operator with examples.

680


Describe the difference between = and == symbols in c programming?

779


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

772


What is return in c programming?

515


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

1785


What is chain pointer in c?

603


What are the two types of structure?

578


Explain how can I write functions that take a variable number of arguments?

616


disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit

1631