What are the advantages of external class?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

char ch=10;printf("%d",ch);what is the output

14 Answers   Accenture,


Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


who is the father of C Language?

20 Answers   CTS, UST,


What is the difference between printf and scanf )?

0 Answers  






What are file streams?

0 Answers  


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


what is computer

4 Answers  


Differentiate between calloc and malloc.

0 Answers   Wipro,


How to removing white spces in c programming only bu using loops

2 Answers  


can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?

2 Answers  


What is the benefit of using const for declaring constants?

0 Answers  


Categories