What is the use of getch ()?
No Answer is Posted For this Question
Be the First to Post Answer
program for comparing 2 strings without strcmp()
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Why & is used in scanf in c?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain how can you tell whether two strings are the same?
1. Write a program to reverse every second word in a given sentence.
When can a far pointer be used?
What is meant by preprocessor in c?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
. Explain the differences between fork() and exec() in C
What is the purpose of the fflush() function in C?
what is the return type of printf