c program to print a name without using semicolon
Answer Posted / subash
main()
{
if(printf("SATYA"))
{
}
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is indirection? How many levels of pointers can you have?
What are different types of variables in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
In a switch statement, what will happen if a break statement is omitted?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is stack in c?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is pointer & why it is used?
What do you understand by normalization of pointers?
How can you tell whether two strings are the same?
what are the facialities provided by you after the selection of the student.
Why do we use return in c?
Explain the use of 'auto' keyword
Tell me with an example the self-referential structure?
What is the function of volatile in c language?