How is pointer initialized in c?
Answer / Shagufta Pravin
A pointer is initialized by assigning it the address of a variable, typically using an & operator. For example: int x = 5; int* p = &x;
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the output of below int n=10; (n++)++; printf("%d",n);
What are global variables and how do you declare them?
Is c an object oriented programming language?
What is a scope resolution operator in c?
What is a class?
Method Overloading exist in c ?
Tell me what are bitwise shift operators?
what is the difference between postfix and prefix unary increment operators?
what is the importance of spanning tree?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
What is merge sort in c?
what is bitwise operator?