What is C language Terminator?
Answers were Sorted based on User's Feedback
Answer / sahadev
Actually (;) is the sentence terminater in C.So it is also
C terminater
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / nayanprakash
After finishing a line we r using semicoln(;) at last to
terminate the sentencs.But remember semicolon is not using
in condition statement.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajendra
Line terminator is ;(semicolon)
c longuage terminator is } (last bracket of main)
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / guest
C language terminator is the closing brace ( } ) of the
main program
| Is This Answer Correct ? | 7 Yes | 6 No |
How will you allocate memory to a double pointer ?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What are the various types of control structures in programming?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What should malloc(0) do?
What is array of structure in c?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
char ch=10;printf("%d",ch);what is the output
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What is undefined behavior?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
How can I get the current date or time of day in a c program?