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 |
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is wild pointer in c?
What is difference between union and structure in c?
Which header file is used for clrscr?
what is difference between #include<stdio.h> and #include"stdio.h"
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is local and global variable in c?
What is the difference between fread buffer() and fwrite buffer()?
Explain what’s a signal? Explain what do I use signals for?
what is the difference between NULL & NUL keywords in C?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output