is compiler do read the data line by line or not.
??
Answer Posted / ankith.v
It Reads The Data Line by Line
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When would you use a pointer to a function?
What is structure in c explain with example?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Differentiate Source Codes from Object Codes
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Is it possible to initialize a variable at the time it was declared?
What is n in c?
Is null always defined as 0(zero)?
Write a program to print “hello world” without using semicolon?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Write a C program to count the number of email on text
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Explain what does a function declared as pascal do differently?
Explain what is the benefit of using #define to declare a constant?
What is extern storage class in c?