c program to print a name without using semicolon

Answer Posted / s

main()
{
if(printf("SIVAN RAJA C"))
{
}
}

Is This Answer Correct ?    19 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is 'bus error'?

643


What are the advantages of using new operator as compared to the function malloc ()?

753


Explain enumerated types in c language?

602


What is c mainly used for?

594


How variables are declared in c?

570






Write a program on swapping (100, 50)

635


what are the facialities provided by you after the selection of the student.

1656


What is difference between array and pointer in c?

535


Explain which function in c can be used to append a string to another string?

583


What does nil mean in c?

669


What is an auto keyword in c?

641


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

641


Can you please explain the difference between strcpy() and memcpy() function?

600


Explain how do you declare an array that will hold more than 64kb of data?

900


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

666