how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
Answer Posted / 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 View All Answers
What do you mean by invalid pointer arithmetic?
What are the different types of control structures?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
If fflush wont work, what can I use to flush input?
Explain what are multidimensional arrays?
Explain what is the difference between #include and #include 'file' ?
How many identifiers are there in c?
What are the different types of C instructions?
What is the use of function overloading in C?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is sizeof array?
What was noalias and what ever happened to it?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What kind of structure is a house?
What the advantages of using Unions?