What are data structures in c and how to use them?
No Answer is Posted For this Question
Be the First to Post Answer
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
How can you pass an array to a function by value?
write a program to arrange the contents of a 1D array in ascending order
How can I split up a string into whitespace-separated fields?
How can you check to see whether a symbol is defined?
what is the difference between declaration ,defenetion and initialization of a variable?
how to copy a string without using c function
Add Two Numbers Without Using the Addition Operator
How to calculate Total working time using Login and logout?
2 Answers CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,
WHAT IS MEANT BY LIFE?
difference between malloc and calloc
How are Structure passing and returning implemented by the complier?