can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / vinothkumar.r
#include<stdio.h>
int main()
{
while(printf("Hai")&&0){}
}
| Is This Answer Correct ? | 42 Yes | 15 No |
Post New Answer View All Answers
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
How to write a multi-statement macro?
What is string length in 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
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What are types of preprocessor in c?
How can I copy just a portion of a string?
What do you mean by a local block?
How can I get the current date or time of day in a c program?
What is the use of function overloading in C?
What is the use of a static variable in c?
What is the difference between far and near in c?
How can I generate floating-point random numbers?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none