write c program without semicolon
Answer Posted / anu
#include<stdio.h>
#include<conio.h>
#define SEMICOLON ;
void main()
{
printf("hELLO") SEMICOLON
getch() SEMICOLON
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Tell me when is a void pointer used?
Are negative numbers true in c?
What is 'bus error'?
What should malloc() do?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the collection of communication lines and routers called?
What is storage class?
Explain the term printf() and scanf() used in c language?
What are the uses of a pointer?
How can my program discover the complete pathname to the executable from which it was invoked?
How can I determine whether a machines byte order is big-endian or little-endian?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is clrscr in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?