Answer Posted / vignesh1988i
pointer is a secondary constant and a derived data type which can hold a address or point to a particular memory location (LOGICALLY) of the same data type in which pointer variable has been declared......
syntax :
(data type) *variable_name;
integer pointer can hold only integer variable address
character pointer can hold only character variable address
floating pointer can hold only float variable address
thank u
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
How can I manipulate strings of multibyte characters?
Explain how can I read and write comma-delimited text?
When should structures be passed by values or by references?
Write the syntax and purpose of a switch statement in C.
What are the types of functions in c?
What do you mean by dynamic memory allocation in c? What functions are used?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are 'near' and 'far' pointers?
What is switch in c?
Can I initialize unions?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Explain a file operation in C with an example.
What is NULL pointer?