The C language terminator is
a.semicolon
b.colon
c.period
d.exclamation mark
Answer Posted / manju
a.semicolon
every statement in a ptogram which is written in c
language can be end with a semicolon. othewise it'l show a
error
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
i want to know the procedure of qualcomm for getting a job through offcampus
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Why should I prototype a function?
Why is c so important?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What are pointers? What are different types of pointers?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Sir i need notes for structure,functions,pointers in c language can you help me please
Explain how can I open a file so that other programs can update it at the same time?
Explain modulus operator.
What is meant by errors and debugging?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
what is the syallabus of computer science students in group- 1?
What does *p++ do? What does it point to?
Explain the difference between getch() and getche() in c?