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}?

1090

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

1324

How will you divide two numbers in a MACRO?

Apps Associates,

1138

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

Aricent,

1085

Explain heap and queue.

Aricent,

1089

State the difference between realloc and free.

Aricent,

1080

State the difference between x3 and x[3].

Aricent,

1112

Write a program to implement queue.

Aricent,

1119

#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,

1155

#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,

1186

#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,

1123

#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,

1280

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

Wilco,

1134

#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,

1060

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

Wilco,

1301


Post New C Questions

Un-Answered Questions { C }

Explain what is wrong with this program statement?

1120


Write a C program to count the number of email on text

1918


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

1246


Explain what are the __date__ and __time__ preprocessor commands?

1122


What is c mainly used for?

1060


What is a global variable in c?

1011


What is s or c?

1066


What is a struct c#?

1051


Where static variables are stored in c?

1112


what is the format specifier for printing a pointer value?

1023


What does the function toupper() do?

1130


What is the heap?

1219


What are header files and what are its uses in C programming?

1241


What do you mean by invalid pointer arithmetic?

1079


Explain how can I make sure that my program is the only one accessing a file?

1225