Should a function contain a return statement if it does not return a value?
No Answer is Posted For this Question
Be the First to Post Answer
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
what is the use of #pragma pack, wer it is used?
Differentiate between ordinary variable and pointer in c.
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
What is the best way of making my program efficient?
What is sizeof return in c?
Explain what are multidimensional arrays?
Why is c called a structured programming language?
What is cohesion and coupling in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none