What library is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
why effort estimation is important?
Lists the benefits of c programming language?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What are the features of c languages?
How does C++ help with the tradeoff of safety vs. usability?
How can I invoke another program or command and trap its output?
What is the acronym for ansi?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
What is the use of ?