Answer Posted / srinath, hyd
ya. this is an memory allocation porpose.
some other allocations are there calloc(), alloc()
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are the primitive data types in c?
What is the default value of local and global variables in c?
what will be the output for the following main() { printf("hi" "hello"); }
Explain how can I write functions that take a variable number of arguments?
What is an lvalue?
What is difference between structure and union in c?
How would you obtain the current time and difference between two times?
Tell us two differences between new () and malloc ()?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is the use of pragma in embedded c?
Why is c so powerful?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is I ++ in c programming?