write a c program to print "Welcome" without using semicolon
in the whole program ??
Answers were Sorted based on User's Feedback
Answer / manish soni bca 3rd year jaipu
while(printf("welcome"))
{
}
it produce the infinite loop
so plz delete this logic.
or edit it with me
#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("hello"))
getch();
}
| Is This Answer Correct ? | 5 Yes | 6 No |
Answer / kinjal gor
main()
{
CLRSCR();
if(printf("I LOVE MY INDIA"))
GETCH();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / sagarsp2010
dont no the answer just send an request to me on following
email address :
sagarsp2010@gmail.com
| Is This Answer Correct ? | 7 Yes | 13 No |
write a program to print the all 4digits numbers & whose squares must me even numbers?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
explain how do you use macro?
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
What is header file in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Differentiate between the = symbol and == symbol?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is console in c language?
what is use#in c
Define macros.
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?