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

Write a program to find minimum between three no.s whithout using comparison operator.

IBM,

4 11276

what is the full form of c language

Satyam, TCS, VNC,

9 32246

why we are using float in C

4 6634

How to calculate sum

2 4516

write a program to remove duplicate from an ordered char array? in c

2 7737

what is foreign key in c language?

ADP,

1 6284

write a program to produce the following output; ABCDEFGFEDCBA ABCDEF FEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A

ABC, College School Exams Tests,

17 60340

pierrot's divisor program using c or c++ code

2240

Explain function pointer with exapmles.

2 6248

Explain demand paging.

Agilent,

1 4903

Explain Linker and Loader

5 13908

Three major criteria of scheduling.

1 3714

Find if a number is power of two or not?

1 3481

Find greatest number out of 10 number without using loop.

TCS,

5 19021

Find occurence of a character in a sting.

TCS,

3 6377


Post New C Questions

Un-Answered Questions { C }

Why does not c have an exponentiation operator?

1049


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

3189


Is array name a pointer?

1030


What are the benefits of organizational structure?

1029


Why double pointer is used in c?

1043


What is a good data structure to use for storing lines of text?

1086


What does == mean in texting?

1300


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

1098


Write a program with dynamically allocation of variable.

1134


write a program to display all prime numbers

1972


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

1105


Are global variables static in c?

1167


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2814


Write a program to print fibonacci series using recursion?

1064


What is %d used for?

1042