can anyone suggest some site name..where i can get some
good data structure puzzles???
No Answer is Posted For this Question
Be the First to Post Answer
How does the C program handle segmentation faults?
What's a "sequence point"?
can we write a c program with out using main
What is the difference between fread buffer() and fwrite buffer()?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
implement general tree using link list
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
Is c an object oriented programming language?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is const and volatile in c?
What are identifiers in c?