What are run-time errors?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pointer variable in c language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is call by value in c?
size maximum allocated by calloc()
What is function in c with example?
how to sort two array of characters and make a new array of characters.
Differentiate between calloc and malloc.
How do you view the path?
What is keyword in c?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What does *p++ do? What does it point to?
What is the explanation for the dangling pointer in c?