What is the use of static variable in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can I allocate arrays or structures bigger than 64K?
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........................
14 Answers HOV Services, IBM, Potty,
How are pointers declared in c?
how will you write a program on linked lists using JAVA programming???????????
How #define works?
How to implement variable argument functions ?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
How can we allocate array or structure bigger than 64kb?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)