Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

C Interview Questions
Questions Answers Views Company eMail

What is the value of a[3] if integer a[] = {5,4,3,2,1}?

1146

Which node is more powerful and can handle local information processing or graphics processing?

1368

How will you divide two numbers in a MACRO?

Apps Associates,

1184

By using C language input a date into it and if it is right?

Aricent,

1131

Explain heap and queue.

Aricent,

1139

State the difference between realloc and free.

Aricent,

1144

State the difference between x3 and x[3].

Aricent,

1163

Write a program to implement queue.

Aricent,

1167

#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

Wilco,

1208

#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

Wilco,

1231

#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

Wilco,

1160

#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

Wilco,

1321

#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

Wilco,

1174

#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

Wilco,

1097

.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

Wilco,

1368


Post New C Questions

Un-Answered Questions { C }

What does 3 periods mean in texting?

1130


what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)

2465


Why c is called top down?

1212


What is zero based addressing?

1233


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1990


Can 'this' pointer by used in the constructor?

1131


Why should I use standard library functions instead of writing my own?

1313


Can we declare variables anywhere in c?

1053


What is the time and space complexities of merge sort and when is it preferred over quick sort?

1130


Does c have enums?

1172


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

1231


how to count no of words,characters,lines in a paragraph.

4470


how to find binary of number?

4534


Disadvantages of C language.

1155


Can we change the value of #define in c?

1051