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
what is pointer ?
10 Answers Kernex Micro Systems,
What are local static variables? How can you use them?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Is Exception handling possible in c language?
What is a const pointer?
write a program in c to print **** * * * * ****
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
What is the difference between typedef struct and struct?
what does keyword ‘extern’ mean in a function declaration?
WHAT IS HIGH LEVEL LANGUAGE?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }