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...


how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"



how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include&quo..

Answer / yuvi

if u want to include ur file like a header file,then u have
to add ur file in the folder which consists of header files...
u can find it in ur computer where ur header files are stored..

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More C Interview Questions

what are the stages of compilation

1 Answers   Bosch,


Explain what will the preprocessor do for a program?

0 Answers  


What is the sizeof () a pointer?

0 Answers  


Difference between strcpy() and memcpy() function?

0 Answers  


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


what is the difference between postfix and prefix unary increment operators?

3 Answers  


Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}

11 Answers   IBM, TCS,


how many times of error occur in C

11 Answers  


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


what is c++ programming?

3 Answers   TCS,


Dont ansi function prototypes render lint obsolete?

0 Answers  


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


Categories