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 45266

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

Honeywell, TCS,

6 11276

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 7571

Find string palindrome 10marks

Honeywell, Infosys, Riktam, Roland,

5 11847

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

TCS,

5 8744

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

11 63046

How to receive strings with spaces in scanf()

7 10791

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 4555

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

2 7319

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

4 12079

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

LG Soft,

4 22174

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 26374

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 8611

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

HCL,

2425

i want to know aptitude questions,technical questions

2 6503


Post New C Questions

Un-Answered Questions { C }

State the difference between realloc and free.

1046


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

2067


Once I have used freopen, how can I get the original stdout (or stdin) back?

1048


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

1229


What is type qualifiers?

1091


ATM machine and railway reservation class/object diagram

5207


What is variable and explain rules to declare variable in c?

1038


write a program to find the given number is prime or not

4683


Is c weakly typed?

977


What is a string?

1069


When should a type cast not be used?

1018


With the help of using classes, write a program to add two numbers.

1002


write a program to display all prime numbers

1931


What is a memory leak? How to avoid it?

1285


Explain what does it mean when a pointer is used in an if statement?

1028