Is there any possibility to create customized header file with c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What does nil mean in c?
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
What is wrong with this program statement? void = 10;
Explain goto?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is variables in c?
how to multiply two number taking input as a string (considering sum and carry )
what is the difference between getch() and getche()?
What are the 5 data types?
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); } }