can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / 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 |
Post New Answer View All Answers
What are the different types of pointers used in c language?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Implement bit Array in C.
Why cant I open a file by its explicit path?
What is linear search?
Can variables be declared anywhere in c?
What is pointers in c?
What is the difference between āgā and āgā in C?
What is a memory leak? How to avoid it?
Can we replace the struct function in tree syntax with a union?
Explain the priority queues?
What is the difference between text and binary modes?
Are the variables argc and argv are always local to main?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }