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 header files used in c language?
How can I remove the trailing spaces from a string?
Define circular linked list.
What is static and auto variables in c?
What is enumerated data type in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is data types?
What is const volatile variable in c?
What is the difference between c &c++?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What does. int *x[](); means ?
What is difference between static and global variable in c?
What are the 4 data types?
Can the “if” function be used in comparing strings?
Write a simple code fragment that will check if a number is positive or negative.