Explain what is the difference between declaring a variable and defining a variable?
Answer / ss
Declaring variable means
Eg- int a;
Defining variable means we are giving some integer value to that a variable
Eg- a=100;
| Is This Answer Correct ? | 0 Yes | 0 No |
What is memmove?
What is an object?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
What is meant by realloc()?
what is c language?
p*=(++q)++*--p when p=q=1 while(q<=6)
Is register a keyword in c?
What is difference between arrays and pointers?
how 2 compile & execute c program with out using editor?
I need a sort of an approximate strcmp routine?
find the sum of two matrices and WAP for it.
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.