What are dangling pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
Difference between C and Embedded C?
how to print a statement in c without use of console statement ,with the help of if statement it should print
Can you return null in c?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
How does placing some code lines between the comment symbol help in debugging the code?
What is static function in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Can the sizeof operator be used to tell the size of an array passed to a function?
What is c language in simple words?