Answer Posted / harish
terminator is used to tell that line is finished or
terminated and can execute next line to the Compiler.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What is file in c language?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How do you construct an increment statement or decrement statement in C?
What is the use of gets and puts?
Differentiate between declaring a variable and defining a variable?
explain what is an endless loop?
What is the value of uninitialized variable in c?
What are the three constants used in c?
Can you please compare array with pointer?
What are the Advantages of using macro
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Write a program to swap two numbers without using a temporary variable?
Stimulate calculator using Switch-case-default statement for two numbers
can any one provide me the notes of data structure for ignou cs-62 paper
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