can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / geeta
#include<stdio.h>
void main()
{
if(printf("Hello World!!!")!=0)
{}
}
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
How to Throw some light on the splay trees?
What are the loops in c?
define string ?
Write a program to identify if a given binary tree is balanced or not.
Is boolean a datatype in c?
Why do we use main function?
Explain how does flowchart help in writing a program?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What are qualifiers in c?
Where are some collections of useful code fragments and examples?
What is quick sort in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Difference between macros and inline functions? Can a function be forced as inline?