Is javascript written in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
could u able to tell about suresoft technical session
When a c file is executed there are many files that are automatically opened what are they files?
how to print this pyramid * * * * * * * * * * * * *
Is c easier than java?
what are the difference between ANSI C and Let Us c and Turbo C
What is the use of a conditional inclusion statement in C?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How can you increase the size of a statically allocated array?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are the 5 organizational structures?
Why C language is a procedural language?