Why does not use getgh(); and <conio.h> in c language.
Answer Posted / sandeep
Check your question dude
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you print only part of a string?
Are the variables argc and argv are always local to main?
shorting algorithmS
how many errors in c explain deply
Write a Program to accept different goods with the number, price and date of purchase and display them
What is pass by value in c?
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); } }
write a program to find out prime number using sieve case?
Is there a way to switch on strings?
What is this infamous null pointer, anyway?
Can include files be nested? How many levels deep can include files be nested?
How can I ensure that integer arithmetic doesnt overflow?
What is the use of printf() and scanf() functions?
Write a program to print all permutations of a given string.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.