What are the types of pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between typeof(foo) and myFoo.GetType()?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
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); } }
Explain how can I pad a string to a known length?
coding for Fibonacci.?
What is scanf () in c?
What is the scope of an external variable in c?
Are global variables static in c?
What is the diffrent between while and do while statement ?
Which is better oop or procedural?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Explain the binary height balanced tree?