What is C language Terminator?
Answers were Sorted based on User's Feedback
Answer / deepak singh
terminator as name indicates,it is end of that particular line and line gets terminated and moves to next line and begins execution.It is denoted ;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / pinkey
yaa i think the terminator of c language is semicolon and
curly braces {}.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / bryan olson
The C language terminator is... C++
Faced with an ill-defined question, work with the
interviewer to re-state it precisely in the accepted
terminology of the field.
| Is This Answer Correct ? | 2 Yes | 10 No |
Here is a neat trick for checking whether two strings are equal
What is getch() function?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
What math functions are available for integers? For floating point?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is typedef struct in c?
What’s the special use of UNIONS?
What is the difference between array_name and &array_name?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
What does d mean?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?