can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / geeta
#include<stdio.h>
void main()
{
if(printf("Hello World!!!")!=0)
{}
}
Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What are the disadvantages of c language?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
How do you define structure?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Which is best linux os?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the difference between void main and main in c?
What are the uses of null pointers?
Do pointers need to be initialized?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is keyword in c?
What is the difference between array and linked list in c?