What is selection sort in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by realloc()?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What is difference between static and global variable in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
How to print "I Love My India" without using semi colon?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
write a program to swap two numbers without using temporary variable?
what is a function pointer and how all to declare ,define and implement it ???
What is hashing in c language?
How do I get an accurate error status return from system on ms-dos?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
write a c program to find biggest of 3 number without relational operator?