print ur name without using any semicolon in c/c++....
Answer Posted / madhu
This is the correct answer,
Question is without using semicolon,
#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}
Is This Answer Correct ? | 87 Yes | 12 No |
Post New Answer View All Answers
When should the const modifier be used?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is function definition in c?
Explain how do you print only part of a string?
diff between exptected result and requirement?
What is difference between constant pointer and constant variable?
What does sizeof return c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
How can type-insensitive macros be created?
What is c mainly used for?
Explain union. What are its advantages?
What does calloc stand for?
What is the scope of static variable in c?