What is the difference between null pointer and wild pointer?
No Answer is Posted For this Question
Be the First to Post Answer
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What is the relationship between pointers and data structure?
What is a keyword?
What does %f mean c?
How do I determine whether a character is numeric, alphabetic, and so on?
Write a program to check armstrong number in c?
What is structure and union in c?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
what is the use of ‘auto’ keyword?
Can you explain the four storage classes in C?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }