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 |
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
what is op? for(c=0;c=1000;c++) printf("%c",c);
what is the use of fflush() function?
What is Heap?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Explain the use of 'auto' keyword
what is the format specifier for printing a pointer value?
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
What is the heap in c?
How can I trap or ignore keyboard interrupts like control-c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100