What is a pointer variable in c language?
Answer / Avi Mantala
A pointer is a variable that stores the memory address of another variable. In C, you can declare a pointer by placing an asterisk (*) before the variable name.nnFor example:nn```cnint num = 42;nint *ptr = #nprintf("The value of num is: %d
", num);nprintf("The address of num is: %p
", &num);nprintf("The value stored in the pointer ptr is: %p
", ptr);nprintf("The value that the pointer ptr points to is: %d
", *ptr);n```
| Is This Answer Correct ? | 0 Yes | 0 No |
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Mention four important string handling functions in c languages .
What is pointers in c?
What are static variables, and where are they stored?
How can you invoke another program from within a C program?
Why malloc is faster than calloc?
What is meant by type specifiers?
What is storage class?
Explain what is a static function?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Explain Basic concepts of C language?
What is extern keyword in c?