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 |
How to write a program to receive an integer & find its octal equivalent by using for loop?
main() { int i; printf("%d",i^i); }
What is an example of structure?
Why is c faster?
What are the functions to open and close file in c language?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
What is the scope of an external variable in c?
Who developed c language and when?
How does the assert() function work?
What are the primitive data types in c?
What is the difference b/w Structure & Union?
Explain the process of converting a Tree into a Binary Tree.