how to print a statement in c without use of console
statement ,with the help of if statement it should print
Answer Posted / girish
#include <stdio.h>
void main()
{
if(printf("Hello World"))
}
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
How can I split up a string into whitespace-separated fields?
Can i use “int” data type to store the value 32768? Why?
What is typedf?
What is c++ used for today?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is pointers in c with example?
what are bit fields? What is the use of bit fields in a structure declaration?
Are the expressions * ptr ++ and ++ * ptr same?
How many keywords are there in c?
What is a substring in c?
What is structure packing in c?
What type of function is main ()?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is array of structure in c?