advantages of pointers?
Answers were Sorted based on User's Feedback
Answer / ganesh
pointer variable is used to store the memory address of the another variable
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / rams
Pointer is a variable that can store the address of another variable to which it's pointing
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sanjay bhosale
Using pointers we can directly manipulate or access memory which is faster hence it increases execution time.
| Is This Answer Correct ? | 1 Yes | 0 No |
write a program to delete an item from a particular location of an linear array?
How can I find the modification date of a file?
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
What is an array? What the different types of arrays in c?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What is "Hungarian Notation"?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Which header file is essential for using strcmp function?
write an algorithm and c program to add two 2x2 matrics
What is anagram in c?