can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / k satish kumar reddy
main()
{
switch(printf("hello "))
{
}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is the sizeof () operator?
What is pointer to pointer in c with example?
What happens if a header file is included twice?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How many loops are there in c?
What are external variables in c?
Which is more efficient, a switch statement or an if else chain?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Explain pointers in c programming?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Is using exit() the same as using return?
What is the purpose of main() function?
What are the types of c language?
What is wrong with this program statement?