c program to print a name without using semicolon
Answer Posted / s
main()
{
if(printf("SIVAN RAJA C"))
{
}
}
| Is This Answer Correct ? | 19 Yes | 4 No |
Post New Answer View All Answers
How can I manipulate individual bits?
What is d'n in c?
What are run-time errors?
How can I read and write comma-delimited text?
What does calloc stand for?
What is the difference between arrays and pointers?
What is void main () in c?
What are the types of functions in c?
How are variables declared in c?
How can I trap or ignore keyboard interrupts like control-c?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What does c mean?
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?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
how to find anagram without using string functions using only loops in c programming