What is C language Terminator?

Answers were Sorted based on User's Feedback



What is C language Terminator?..

Answer / vandana

semicolon(;)

Is This Answer Correct ?    50 Yes 5 No

What is C language Terminator?..

Answer / karthik

semicolon(;)

Is This Answer Correct ?    27 Yes 2 No

What is C language Terminator?..

Answer / manishknp2005

i think it is semicolon(;).

Is This Answer Correct ?    22 Yes 2 No

What is C language Terminator?..

Answer / chakriyadav

semicolon(;)

Is This Answer Correct ?    18 Yes 1 No

What is C language Terminator?..

Answer / sweta

ya its semocolon (;)

Is This Answer Correct ?    18 Yes 2 No

What is C language Terminator?..

Answer / sahadev

Actually (;) is the sentence terminater in C.So it is also
C terminater

Is This Answer Correct ?    13 Yes 2 No

What is C language Terminator?..

Answer / maskfriend

semicolon(;)

Is This Answer Correct ?    10 Yes 2 No

What is C language Terminator?..

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

What is C language Terminator?..

Answer / rajendra

Line terminator is ;(semicolon)
c longuage terminator is } (last bracket of main)

Is This Answer Correct ?    7 Yes 1 No

What is C language Terminator?..

Answer / guest

C language terminator is the closing brace ( } ) of the
main program

Is This Answer Correct ?    7 Yes 6 No

Post New Answer

More C Interview Questions

regarding pointers concept

0 Answers  


How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 Answers  


Difference Between embedded software and soft ware?

1 Answers   Bosch,


what is a pointer

4 Answers   Bank Of America, TCS,


How can you avoid including a header more than once?

0 Answers  






6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


Is the exit() function same as the return statement? Explain.

0 Answers   Agilent, ZS Associates,


Do you know what are bitwise shift operators in c programming?

0 Answers  


write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)

7 Answers   Consultancy, DBU, FD, JK Associates, Kobe, Satyam,


64/square(4)

1 Answers  


What does the function toupper() do?

0 Answers  


Categories