Answer Posted / santhi
the variable which can be modified.
| Is This Answer Correct ? | 24 Yes | 33 No |
Post New Answer View All Answers
What are types of structure?
Give differences between - new and malloc() , delete and free() ?
Explain the bubble sort algorithm.
Does c have enums?
What are the types of pointers?
Explain the properties of union. What is the size of a union variable
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
explain what are pointers?
How can I sort more data than will fit in memory?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What does double pointer mean in c?
What is hashing in c language?
How will you write a code for accessing the length of an array without assigning it to another variable?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is unsigned int in c?