Answer Posted / sudharsan
c is a basic structural programming language and this is a
advanced version of cobal and pascal etc....
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
List the variables are used for writing doubly linked list program.
Is it better to use malloc() or calloc()?
Explain what is the benefit of using const for declaring constants?
What is the difference between procedural and functional programming?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the use of a semicolon (;) at the end of every program statement?
Why isnt there a numbered, multi-level break statement to break out
What is an identifier?
How can you tell whether two strings are the same?
C language questions for civil engineering
Write a program in c to replace any vowel in a string with z?
What is typedef struct in c?
Which is the memory area not included in C program? give the reason
What is variable initialization and why is it important?
Find MAXIMUM of three distinct integers using a single C statement