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

If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.

Google,

12 46276

Write a C function to search a number in the given list of numbers. donot use printf and scanf

Honeywell, TCS,

6 11714

what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

Honeywell,

3 7829

Find string palindrome 10marks

Honeywell, Infosys, Riktam, Roland,

5 12195

a C prog to swap 2 no.s without using variables just an array?

TCS,

5 9110

Write a program in c to input a 5 digit number and print it in words.

11 63887

How to receive strings with spaces in scanf()

7 11306

i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 4754

wap in c to accept n number display the highest and lowest value

2 7533

wap in c to accept a number display the total count of digit

4 12397

what are the difference between ANSI C and Let Us c and Turbo C

LG Soft,

4 22586

The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................

HOV Services, IBM, Potty,

14 27348

what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>

TCS,

5 8969

i want to know the procedure of qualcomm for getting a job through offcampus

HCL,

2521

i want to know aptitude questions,technical questions

2 6688


Post New C Questions

Un-Answered Questions { C }

What is a loop?

1114


Explain how can I avoid the abort, retry, fail messages?

1108


Difference between constant pointer and pointer to a constant.

1231


How can I recover the file name given an open stream?

1086


What is a program?

1343


How old is c programming language?

1066


How can you restore a redirected standard stream?

1184


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1937


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

2418


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1789


Explain how do you sort filenames in a directory?

1080


What are the primitive data types in c?

1136


Define the scope of static variables.

1205


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

2866


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1224