Answer Posted / 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 |
Post New Answer View All Answers
Is it acceptable to declare/define a variable in a c header?
What is the difference between the local variable and global variable in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain how can I convert a number to a string?
Is javascript based on c?
What is a method in c?
What is the process of writing the null pointer?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
How can I convert a number to a string?
What is the most efficient way to store flag values?
Why we use void main in c?
How to throw some light on the b tree?
In a switch statement, explain what will happen if a break statement is omitted?
Explain what are compound statements?