can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / gauravjeet singh gill
#include<stdio.h>
void main()
{
while(printf("hello")?0:1)
{
}
}
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
What are the different types of objects used in c?
Explain what is the difference between a string and an array?
What is the best way to comment out a section of code that contains comments?
What is the difference between declaring a variable and defining a variable?
What is this infamous null pointer, anyway?
Can true be a variable name in c?
What is an array? What the different types of arrays in c?
Tell me about low level programming languages.
How can I get the current date or time of day in a c program?
Is there a built-in function in C that can be used for sorting data?
how to build a exercise findig min number of e heap with list imlemented?
Explain how do you sort filenames in a directory?
Explain modulus operator.
Explain the difference between structs and unions in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.