write a “Hello World” program in “c” without using a semicolon?
Answer Posted / saranya
int main()
{
if(printf("Hello world"))
{
}
}
Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
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.
How to write a code for reverse of string without using string functions?
What is actual argument?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What are the different types of constants?
What is the sizeof () operator?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What does char * * argv mean in c?
How important is structure in life?
What is derived datatype in c?
Why can’t constant values be used to define an array’s initial size?
What is the use of extern in c?
what is the structure pointer?
string reverse using recursion
Explain why C language is procedural?