Write a code on reverse string and its complexity.
No Answer is Posted For this Question
Be the First to Post Answer
Method Overloading exist in c ?
why do some people write if(0 == x) instead of if(x == 0)?
How can I handle floating-point exceptions gracefully?
main() { clrscr(); } clrscr();
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the difference between malloc calloc and realloc in c?
How can I convert integers to binary or hexadecimal?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
can we write a c program with out using main
what is the use of operator ^ in C ? and how it works?
What are header files and explain what are its uses in c programming?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?