WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / swati
to give indication to compiler that the printed statement
before terminator is ended and read next line of
program.Terminator is also known as "end of statement"
| Is This Answer Correct ? | 27 Yes | 0 No |
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
what is the use of macro program
What is static and auto variables in c?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
In a header file whether functions are declared or defined?
What are shell structures used for?
Explain what is a static function?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.