can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answers were Sorted based on User's Feedback
Answer / anshukumarsrivatsva.
a c program to prrint a string without using a semicolon,
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("allahabad is a sangam city))
getch();
}
| Is This Answer Correct ? | 0 Yes | 3 No |
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What are high level languages like C and FORTRAN also known as?
How the C program can be compiled?
write a program to add two numbers of any size.....(remember any size)
what are the general concepts of c and c++
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Describe newline escape sequence with a sample program?
to get a line of text and count the number of vowels in it
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What is anagram in c?
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
What are identifiers in c?