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
What is static and auto variables in c?
How to draw the flowchart for structure programs?
Which is best linux os?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write the syntax and purpose of a switch statement in C.
How can I read a binary data file properly?
What does %d do in c?
Combinations of fibanocci prime series
What is a 'null pointer assignment' error?
What are called c variables?
Explain threaded binary trees?
When should we use pointers in a c program?
How can I do serial ("comm") port I/O?
Explain how can type-insensitive macros be created?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?