How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / jaya prakash
int main()
{
if(printf("Hello"))
{
//Null statement
}
}
| Is This Answer Correct ? | 51 Yes | 3 No |
Post New Answer View All Answers
What is class and object in c?
What does %d do in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is wild pointer in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Is malloc memset faster than calloc?
How are variables declared in c?
What is multidimensional arrays
What is the difference between array and pointer?
Can include files be nested? How many levels deep can include files be nested?
What is the difference between #include
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Can you pass an entire structure to functions?
Is null always defined as 0(zero)?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.