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

Answer Posted / taruna chaudhary

#include<stdio.h>
void main()
{
clrscr();
if("printf(hello pushpendra)")
getch();
}

Is This Answer Correct ?    4 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How are structure passing and returning implemented?

771


What is the use of header?

826


what is different between auto and local static? why should we use local static?

877


What is putchar() function?

842


in linking some of os executables are linking name some of them

1886


Is return a keyword in c?

828


What is indirection in c?

799


What is external variable in c?

811


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

1792


a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

846


What functions are used for dynamic memory allocation in c language?

847


Why is a semicolon (;) put at the end of every program statement?

833


Differentiate between a for loop and a while loop? What are it uses?

919


Why clrscr is used in c?

790


I need a sort of an approximate strcmp routine?

832