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
Who is the main contributor in designing the c language after dennis ritchie?
What is the description for syntax errors?
what are bit fields? What is the use of bit fields in a structure declaration?
How do I use strcmp?
State two uses of pointers in C?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Explain enumerated types in c language?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Explain what’s a signal? Explain what do I use signals for?
What are the general description for loop statement and available loop types in c?
Explain the ternary tree?
C program to find all possible outcomes of a dice?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Do you know what are bitwise shift operators in c programming?
What are nested functions in c?