can we print any string in c language without using
semicolon(;)(terminator) in whole program.

Answer Posted / vinothkumar.r

#include<stdio.h>
int main()
{
while(printf("Hai")&&0){}
}

Is This Answer Correct ?    42 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of a semicolon (;) at the end of every program statement?

752


how to build a exercise findig min number of e heap with list imlemented?

1599


Why is c called a mid-level programming language?

712


Explain what are compound statements?

595


Where static variables are stored in c?

575






Who is the main contributor in designing the c language after dennis ritchie?

536


What is the difference between fread buffer() and fwrite buffer()?

665


What is the difference between text and binary i/o?

581


Does c have an equivalent to pascals with statement?

561


What is a far pointer in c?

588


Write a program for finding factorial of a number.

621


What is a class c rental property?

593


Write a code to generate a series where the next element is the sum of last k terms.

720


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1414


please send me the code for multiplying sparse matrix using c

1710