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 |
Do string constants represent numerical values?
write a program wch produces its own source code aas its output?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
Why does this code crash?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
How can I dynamically allocate arrays?
What is file in c language?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Explain how do you print only part of a string?
write a program to swap two numbers without using temporary variable?