Is c procedural or object oriented?
No Answer is Posted For this Question
Be the First to Post Answer
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
How can I sort more data than will fit in memory?
What are pointers? Why are they used?
Write a program to check whether a number is prime or not using c?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Tell me when would you use a pointer to a function?
what is the difference between declaration and definition of a variable or function ?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What are the features of c languages?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Program to find the absolute value of given integer using Conditional Operators
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work