Why we write conio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
How the processor registers can be used in C ?
Where define directive used?
what are the advantage and disadvantage of recursion
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
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); }
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
what is the defrenece between structure and union
what is the difference between getch() and getche()?
Is c still used?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Explain what are the different file extensions involved when programming in c?