What is return type in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is main () in c?
What is sizeof array?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
what is a stack
What is the total generic pointer type?
what is structuer?
Binary tree traversing
write a program to create a sparse matrix using dynamic memory allocation.
What is advantage of pointer in c?
Juxtapose the use of override with new. What is shadowing?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.