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 |
HOW DO YOU HANDLE EXCEPTIONS IN C?
How do you define structure?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What is your stream meaning?
What is wild pointer in c with example?
What is the proper way of these job Tell me about there full work
what is difference b/w extern & volatile variable??
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}