can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answers were Sorted based on User's Feedback
Answer / nitish_bhasin
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
| Is This Answer Correct ? | 54 Yes | 11 No |
#include<stdio.h>
int main()
{
while(printf("Hai")&&0){}
}
| Is This Answer Correct ? | 42 Yes | 15 No |
Answer / abhradeep chatterjee
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
this is the correct answer.
| Is This Answer Correct ? | 22 Yes | 4 No |
Answer / gauravjeet singh gill
#include<stdio.h>
void main()
{
while(printf("hello")?0:1)
{
}
}
| Is This Answer Correct ? | 20 Yes | 5 No |
Answer / geeta
#include<stdio.h>
void main()
{
if(printf("Hello World!!!")!=0)
{}
}
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / k satish kumar reddy
main()
{
switch(printf("hello "))
{
}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / vinnu bhardwaj
main()
{
if(printf("Hello world"))
{}
}
//Here the {} act as a blank compound statement. But it is
//not mandatory to put some simple statements in it which
//require a semicolon. There are many more such answers to
//this question but the basic funda will be same
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / taruna chaudhary
#include<stdio.h>
void main()
{
clrscr();
if("printf(hello pushpendra)")
getch();
}
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / praveen vinny
/*
What if I want to print the sum of two numbers inside a
string without using a semicolon
*/
#include<iostream.h>
void main()
{
int a,b;
if(cout<<"Please enter two numbers : ")
if(cin>>a>>b)
if(cout<<"Sum = "<<(a+b))
}
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / chandanakurukunda
#include<stdio.h>
void main()
{
if(printf("hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
WHOT IS CHAR?
Is reference used in C?
What is data structure in c language?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is assert and when would I use it?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Can a program have multiple main() functions?
what is data structure
What is the use of structure padding in c?
What are types of preprocessor in c?