is compiler do read the data line by line or not.
??
Answer Posted / pratheepmanikandan
yes.the compiler read a data line by line.
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
What is #define in c?
What is ponter?
What is difference between union and structure in c?
What are identifiers in c?
writ a program to compare using strcmp VIVA and viva with its output.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is the purpose of macro in C language?
difference between native and cross compilers
How we can insert comments in a c program?
Why is sizeof () an operator and not a function?
Can you subtract pointers from each other? Why would you?
What is preprocessor with example?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are the properties of union in c?