can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / chandanakurukunda
#include<stdio.h>
void main()
{
if(printf("hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
In C programming, what command or code can be used to determine if a number of odd or even?
Why is c called c not d or e?
#include
What is the purpose of sprintf() function?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is the use of bit field?
Explain how can you be sure that a program follows the ansi c standard?
What is the difference between array and pointer?
What is the most efficient way to count the number of bits which are set in an integer?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Why is c not oop?
What are lookup tables in c?
What is selection sort in c?
Why c is called procedure oriented language?
Write a program to swap two numbers without using the third variable?