What are the two types of structure?
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); } }
c program to print a name without using semicolon
Write a program in c to print * * * * * *******
2. What does static variable mean?
What is hash table in c?
What is realloc in c?
Why is c so important?
What is pass by reference in c?
Compare interpreters and compilers.
Explain what is meant by high-order and low-order bytes?
Explain how do you use a pointer to a function?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above