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
No Answer is Posted For this Question
Be the First to Post Answer
What is variable declaration and definition in c?
Explain the red-black trees?
write a c program in such a way that if we enter the today date the output should be next day's date.
Why doesnt the call scanf work?
Differentiate between the = symbol and == symbol?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
write a progam to display the factors of a given number and disply how many prime numbers are there?
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why is %d used in c?
Explain is it valid to address one element beyond the end of an array?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }