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 does the message "warning: macro replacement within a string literal" mean?

1 3485

AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?

HCL,

13 23031

a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?

Geometric Software,

6 14718

f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

Geometric Software,

7 12752

f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?

Geometric Software,

5 10713

Define function ?Explain about arguments?

Geometric Software, Infosys,

2 8803

C passes By value or By reference?

Geometric Software, Infosys,

5 11116

difference between my-strcpy and strcpy ?

Geometric Software, IIM, Infosys,

3 14797

What compilation do?

Geometric Software, Infosys,

7 11789

Write a program to exchange two variaables without temp

Geometric Software,

9 13343

why java is called as a purely oops language.

TVS,

3 8612

macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration

HCL, Infosys, Microsoft,

12 36610

enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above

HCL, Wipro,

8 44495

2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

HCL, Tech Mahindra,

9 32137

fn f(x) { if(x<=0) return; else f(x-1)+x; }

HCL,

5 17955


Post New C Questions

Un-Answered Questions { C }

How is a macro different from a function?

1118


What is the use of a conditional inclusion statement in C?

1009


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3848


Which is better between malloc and calloc?

1120


How can I trap or ignore keyboard interrupts like control-c?

1020


What is the difference between a string and an array?

1153


Is Exception handling possible in c language?

1991


What is the stack in c?

1082


Which of these functions is safer to use : fgets(), gets()? Why?

1045


What is logical error?

1064


Explain how do you declare an array that will hold more than 64kb of data?

1398


code for quick sort?

1985


What is huge pointer in c?

1023


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

1302


What is NULL pointer?

1040