When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of pragma in embedded c?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
count the numbers between 100 and 300, that star with 2 and ends with 2
Why does the call char scanf work?
what is the structure pointer?
Why functions are used in c?
Write a program to check whether a number is prime or not using c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
What are the different types of data structures in c?
how to set Nth bit of a variable?