write c program without semicolon
Answer Posted / s.venmathi
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("HELLO"))
{
}
}
| Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
What is scanf () in c?
What is the -> in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What the different types of arrays in c?
What are pointers? Why are they used?
What is the process to generate random numbers in c programming language?
Where are c variables stored in memory?
how logic is used
What is volatile, register definition in C
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What does 1f stand for?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What are the back slash character constants or escape sequence charactersavailable in c?
What is extern keyword in c?
Why c is a mother language?