How to write a code for reverse of string without using
string functions?
What is the advantage of an array over individual variables?
How to Throw some light on the splay trees?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Is the following code legal? struct a { int x; struct a b; }
progrem to generate the following series 1 12 123 1234 12345
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is an anonymous union and where to apply that ?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is a structure and why it is used?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What is c++ used for today?