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 C program to perform some of the operation which can be performed using Single linked list

Qualcomm,

1 8073

How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 3768

what is an array

5 7422

progrem to generate the following series 1 12 123 1234 12345

HCL, Wipro,

6 43911

what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }

HCL,

3 10804

who is the father of C Language?

CTS, UST,

20 33489

a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'

2 5105

what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 7354

what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 3722

int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 8181

Hi can anyone tell what is a start up code?

CTS,

2070

Can anyone tell what is stack overflow? what precaution we should take?

1 3667

what are the advantages & disadvantages of unions?

2 38530

which one is better structure or union?(other than the space occupied )

2 11433

can anyone please tell about the nested interrupts?

2119


Post New C Questions

Un-Answered Questions { C }

In which header file is the null macro defined?

1344


Explain what are run-time errors?

1088


What are pointers in C? Give an example where to illustrate their significance.

1227


What is pass by reference in functions?

848


What does the c in ctime mean?

1094


What is the total generic pointer type?

1159


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

2318


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1725


Difference between pass by reference and pass by value?

1160


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1970


Sir i need notes for structure,functions,pointers in c language can you help me please

2416


What is the right type to use for boolean values in c? Is there a standard type?

1015


What is the scope of local variable in c?

1132


Difference between constant pointer and pointer to a constant.

1146


What is meant by operator precedence?

1147