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
. Write a program to get a string and to convert the 1st letter of it to uppercase
Explain built-in function?
What is key word in c language?
How do I use strcmp?
When should I declare a function?
program to convert a integer to string in c language'
Which of these functions is safer to use : fgets(), gets()? Why?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
what is the hexidecimal number of 4100?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)