How can you allocate arrays or structures bigger than 64K?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of the restrict keyword?
What are c identifiers?
How can I implement a delay, or time a users response, with sub-second resolution?
How can a program be made to print the name of a source file where an error occurs?
write a program in c to read array check element is present or not?
In header files whether functions are declared or defined?
What does static mean in c?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
Write a pro-gramme to determine whether the number is even or odd?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What's the difference between constant char *p and char * constant p?