c program to print a name without using semicolon
Answer Posted / amehga
main()
{
if(printf("AMEGHA"))
{
}
}
| Is This Answer Correct ? | 56 Yes | 5 No |
Post New Answer View All Answers
What are multidimensional arrays?
What does s c mean on snapchat?
What is the difference between #include
Explain the advantages and disadvantages of macros.
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Describe how arrays can be passed to a user defined function
List the difference between a While & Do While loops?
Why does the call char scanf work?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
How can a process change an environment variable in its caller?
How many levels of indirection in pointers can you have in a single declaration?
Why is c faster?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?