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 the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Difference Between embedded software and soft ware?
Where is volatile variable stored?
What is the use of in c?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
What are examples of structures?
Read two numbers from keyboard and find maximum of them?
inline function is there in c language?
given post order,in order construct the corresponding binary tree
What is the correct declaration of main?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is quick sort in c?