What is the usage of the pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is nested structure?
Write a function in c to find the area of a triangle whose length of three sides is given.
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
difference between malloc and calloc
What is an example of structure?
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.
What are identifiers c?
How many levels of pointers have?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
In scanf h is used for
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Can a pointer be volatile in c?