C
Programming and Technical
Programming
Database
write a c prgram an print your name without using semicolon on printf function
Read Solution (Total 9)
-
- #include
int main()
{
if(printf("vaishnavi jangle"))
return 0;
} - 7 years agoHelpfull: Yes(4) No(0)
- #include
void main()
{
if(printf("RAGHULRAJ"))
} - 7 years agoHelpfull: Yes(1) No(1)
- #include
void main()
{
if(printf("Durgesh")!=0)
{}
} - 7 years agoHelpfull: Yes(1) No(0)
- in C, the name can be printed without semicolon but in c++, using cout to print name, it gives error
# include
int main()
{
if(printf("divya"))
return 0;
}
-if we use void main() and use return statement, then also it will show error in C. - 7 years agoHelpfull: Yes(0) No(0)
- #include
int main()
{
if(printf("Harpreet "));
} - 7 years agoHelpfull: Yes(0) No(0)
- write the printf("Your Name") within if statement.
- 7 years agoHelpfull: Yes(0) No(1)
- #include
void main()
{
if(printf("sahithi"))
} - 6 years agoHelpfull: Yes(0) No(0)
- #include
void main()
{
if(printf("nithin"))
{
}
} - 6 years agoHelpfull: Yes(0) No(0)
- Please check if(!printf("hello") )
- 5 years agoHelpfull: Yes(0) No(0)
C Other Question