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

Answer Posted / herok

int variable takes interger values but int pointer can take
address of an integer variable and also int variable takes
mainly 2 bytes and int pointer takes 4 bytes of memory
space.

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does a function declared as pascal do differently?

599


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

719


How are 16- and 32-bit numbers stored?

717


What are c header files?

571


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

599






What are lookup tables in c?

543


If you know then define #pragma?

668


What are runtime error?

617


How many types of sorting are there in c?

600


what is the basis for selection of arrays or pointers as data structure in a program

3780


What is a stream water?

645


What are all different types of pointers in c?

568


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1444


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1624


What is far pointer in c?

799