How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What are the 4 types of unions?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is volatile variable how do you declare it?
yogesh patil in dell
char p="data"; printf(p);
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
What is a C array and illustrate the how is it different from a list.
What is a class?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Difference between strcpy() and memcpy() function?
What will be the output of x++ + ++x?