Which is better oop or procedural?
No Answer is Posted For this Question
Be the First to Post Answer
c program to input values in a table(using 2D array) and print odd numbers from them
What is the difference between typedef struct and struct?
what is mean by Garbage collection ? Please answer me. Advance thanks.
How many parameters should a function have?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What is signed and unsigned?
What is extern storage class in c?
Can we use visual studio for c?
How can I change the size of the dynamically allocated array?
Write a program to generate prime factors of a given integer?
What is the restrict keyword in C?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?