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 |
regarding pointers concept
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.
Difference Between embedded software and soft ware?
what is a pointer
4 Answers Bank Of America, TCS,
How can you avoid including a header more than once?
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
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.
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?
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)
What does the function toupper() do?