what do you mean by defining a variable in our c code?
Answer Posted / nikhil saxena
We only declare & initialize the variables in our code but
we never define them.
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What is structure padding in c?
Where are c variables stored in memory?
What are identifiers in c?
What is signed and unsigned?
Explain what is the difference between functions getch() and getche()?
How will you find a duplicate number in a array without negating the nos ?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is the role of && operator in a program code?
Why c language is called c?
What are the different types of control structures in programming?
What is a buffer in c?
What is difference between array and structure in c?
What is a good data structure to use for storing lines of text?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...