can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / nitish_bhasin
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
| Is This Answer Correct ? | 54 Yes | 11 No |
Post New Answer View All Answers
What is a static function in c?
Explain what is wrong with this statement? Myname = ?robin?;
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are the characteristics of arrays in c?
How can I remove the leading spaces from a string?
What's a good way to check for "close enough" floating-point equality?
What is difference between static and global variable in c?
Difference between Function to pointer and pointer to function
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
hi send me sample aptitude papers of cts?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What does != Mean in c?
What is bss in c?
Write a program to find factorial of a number using recursive function.
Explain what is a const pointer?