Why can’t constant values be used to define an array’s initial size?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you be sure that a program follows the ansi c standard?
What is the real time usage volatile?
If you know then define #pragma?
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); } }
What is fflush() function?
What are types of functions?
Explain data types & how many data types supported by c?
How many identifiers are there in c?
What is declaration and definition in c?
read a number & print all its devisors using c-program?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
what is the difference between 123 and 0123 in c?