Explain that why C is procedural?
No Answer is Posted For this Question
Be the First to Post Answer
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is table lookup in c?
what is the significance of static storage class specifier?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
How can you increase the size of a dynamically allocated array?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
How a string is stored in c?
what is mallloc()?how it works?
C program to find frequency of each character in a text file?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is the condition that is applied with ?: Operator?