Why is not a pointer null after calling free?
No Answer is Posted For this Question
Be the First to Post Answer
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What does the error 'Null Pointer Assignment' mean and what causes this error?
I heard that you have to include stdio.h before calling printf. Why?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
how to get the starting address of file stored in harddisk through 'C'program.
What standard functions are available to manipulate strings?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
By using C language input a date into it and if it is right?
How can I copy just a portion of a string?
why we use "include" word before calling the header file. is there any special name for that include??????
What is header file definition?