What is ponter?
No Answer is Posted For this Question
Be the First to Post Answer
What happens if a header file is included twice?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Explain how do you view the path?
what is the hexidecimal number of 4100?
What is getch?
Why should I prototype a function?
Why do we use main function?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
write a own function to compare two strings with out using stringcomparition function?
How would you sort a linked list?
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
Explain what are the standard predefined macros?