What is the use of gets and puts?
No Answer is Posted For this Question
Be the First to Post Answer
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
When we use void main and int main?
how to copy a string without using c function
what is the difference between char * const and const char *?
What is pass by value in c?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
what is the format specifier for printing a pointer value?
Tell me what is the purpose of 'register' keyword in c language?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
SRUCTURE PROGRAMMING
an algorithem for the implementation of circular doubly linked list
how to swap 2 numbers in a single statement?