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 compiler

7 11217

main() { printf(5+"Vidyarthi Computers"); }

6 11010

how many error occurs in C language ?

Infosys, Wipro,

22 47011

how many times of error occur in C

11 16906

no consistent academics. how to answer the question

2285

how many header file is in C language ?

College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,

44 80963

How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 9953

Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);

1 3653

what is the differance between pass by reference and pass by value.

Infosys,

7 12696

what is the difference between arrays and linked list

MAHINDRA, Tech Mahindra, Wipro,

26 89664

There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.

Cisco, Google, MBT,

15 27589

Write a programme to find even numbers without using any conditional statement?

ADD Software, Infosys,

3 11640

Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms

Convex Digital,

5 9746

Software Interview Questions

CAT,

1 4290

How do you write a program which produces its own source code as its output?

4 10848


Post New C Questions

Un-Answered Questions { C }

What is the difference between constant pointer and constant variable?

1227


Explain About fork()?

1119


What is pointers in c?

1118


How to write a multi-statement macro?

1049


What are the modifiers available in c programming language?

1223


Can you please explain the difference between strcpy() and memcpy() function?

1072


How is actual parameter different from the formal parameter?

1026


What is the use of linkage in c language?

1067


a c code by using memory allocation for add ,multiply of sprase matrixes

2806


Are the variables argc and argv are always local to main?

1025


Do you know the purpose of 'register' keyword?

1023


if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.

5238


What is the difference between procedural and functional programming?

1081


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1751


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2314