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

1087

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

1322

How will you divide two numbers in a MACRO?

Apps Associates,

1136

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

Aricent,

1080

Explain heap and queue.

Aricent,

1084

State the difference between realloc and free.

Aricent,

1070

State the difference between x3 and x[3].

Aricent,

1112

Write a program to implement queue.

Aricent,

1114

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

1120

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

1130

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

1058

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

Wilco,

1295


Post New C Questions

Un-Answered Questions { C }

When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?

1066


Write a program to print all permutations of a given string.

1195


What is the difference between procedural and functional programming?

1076


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

1010


What are the different categories of functions in c?

1134


What is header file in c?

1070


a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler

1078


What is the difference between int main and void main in c?

1175


What are the advantages of Macro over function?

2013


a value that does not change during program execution a) variabe b) argument c) parameter d) none

1236


What are the advantages of using new operator as compared to the function malloc ()?

1337


List the different types of c tokens?

1072


Is it fine to write void main () or main () in c?

1025


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1963


Explain what is dynamic data structure?

1166