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

3 8003

Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

2294

how to add numbers without using arithmetic operators.

TCS,

14 16795

if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?

Wipro,

9 11699

a 'c' program to tell that the set of three coordinates lie on a same line

Persistent,

3 14047

write a program to print sum of each row of a 2D array.

4 26650

write a program to arrange the contents of a 1D array in ascending order

4 19107

What will be the output of x++ + ++x?

MBT, Religare,

20 52606

write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)

ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,

26 81184

how is the examination pattern?

Wipro,

2021

Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }

NDS,

3 8428

main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }

NDS, TCS,

22 33709

#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

CDAC, GATE, NDS, TCS,

14 47772

fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

NDS,

17 21937

#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

NDS,

6 11025


Post New C Questions

Un-Answered Questions { C }

What is meant by inheritance?

1090


Explain is it better to bitshift a value than to multiply by 2?

1204


What is the size of structure pointer in c?

1067


Which is better pointer or array?

1028


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

1337


Suggesting that there can be 62 seconds in a minute?

1049


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

1140


Is the exit() function same as the return statement? Explain.

1104


What are pointers? Why are they used?

1183


What is array in c with example?

1270


What is the use of the function in c?

1019


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

1980


what is the format specifier for printing a pointer value?

1023


write a c program to find the sum of five entered numbers using an array named number

2144


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

16787