write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / kayalvizhi.s
#include<stdio.h>
{
main()
while(printf("welcome"))
}
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is operator promotion?
What is the difference between near, far and huge pointers?
What is wild pointer in c with example?
What is the use of ?
Explain the properties of union. What is the size of a union variable
How are variables declared in c?
Write a program with dynamically allocation of variable.
if p is a string contained in a string?
How to explain the final year project as a fresher please answer with sample project
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Which header file is essential for using strcmp function?
If I have a char * variable pointing to the name of a function ..
Differentiate between static and dynamic modeling.
What are the standard predefined macros?