What is a dynamic array in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


How many levels of pointers can you have?

0 Answers  


Disadvantages of C language.

0 Answers   Impetus,


main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }

6 Answers  


Write a program to print factorial of given number without using recursion?

0 Answers  






Is register a keyword in c?

0 Answers  


What is advantage of pointer in c?

0 Answers  


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

0 Answers   HCL,


Write a c program to demonstrate character and string constants?

0 Answers  


List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,


how many argument we can pas in in a function

25 Answers   CTS,


What's the difference between DELETE TABLE and TRUNCATE TABLE commands?

2 Answers   CTC,


Categories