What does 2n 4c mean?
No Answer is Posted For this Question
Be the First to Post Answer
What will happen when freeing memory twice
write a c program in such a way that if we enter the today date the output should be next day's date.
In which area global, external variables are stored?
what is object oriental programing?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
What are qualifiers in c?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
How can you determine the size of an allocated portion of memory?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is the hardest programming language?
Do array subscripts always start with zero?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....