What is the use of a semicolon (;) at the end of every program statement?
In computer programming, the semicolon is often used to separate multiple statements (for example, in Perl, Pascal, and SQL; see Pascal: Semicolons as statement separators). In other languages, semicolons are called terminators and are required after every statement (such as in PL/I, Java, and the C family).
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the differences between public, protected, private and internal.
Explain the process of converting a Tree into a Binary Tree.
How can I run c program?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Write a program to print ASCII code for a given digit.
what is the importance of spanning tree?
can we declare a variable in different scopes with different data types? answer in detail
how to generate the length of a string without using len funtion?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
When should the const modifier be used?
wat s the meaning of (int *)p +4;