Differentiate between declaring a variable and defining a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between arrays and pointers?
Explain how to reverse singly link list.
Why is void main used?
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 hash table 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.
What is dynamic memory allocation?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
Write a program to check prime number in c programming?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What does a function declared as pascal do differently?