|
| Total Answers and Comments: 9 |
Last Update: September 10, 2008 Asked by: kamba |
|
| | |
|
Submitted by: p22068 yes it is possible to write a C program without a semicolon. Ex: int main() { if (printf("%d", Hello")) { // EMPTY } }
Above answer was rated as good by the following members: nikhil jain, sumitshining, phull.neha, meghs007 | |
January 05, 2008 02:21:29 | #3 |
| Susil Kumar |
|
Member Since: January 2008 Contribution: 11 |
RE: Is it possible to write a c program without semicolons?
| Yes It is possible.
Example:
#include<stdio.h> main(){
if(0){ }else{ }
}
|  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|