What is C language Terminator?
Answers were Sorted based on User's Feedback
Answer / sahadev
Actually (;) is the sentence terminater in C.So it is also
C terminater
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / nayanprakash
After finishing a line we r using semicoln(;) at last to
terminate the sentencs.But remember semicolon is not using
in condition statement.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajendra
Line terminator is ;(semicolon)
c longuage terminator is } (last bracket of main)
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / guest
C language terminator is the closing brace ( } ) of the
main program
| Is This Answer Correct ? | 7 Yes | 6 No |
Apart from dennis ritchie who the other person who contributed in design of c language.
Why does the call char scanf work?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is the difference between getch() and getche()?
how to create c progarm without void main()?
What is a macro, and explain how do you use it?
Explain is it better to bitshift a value than to multiply by 2?
a program that can input number of records and can view it again the record
write a program to display all prime numbers
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain how can I convert a number to a string?