difference between object file and executable file
No Answer is Posted For this Question
Be the First to Post Answer
How do you define structure?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Explain what is the best way to comment out a section of code that contains comments?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Why do we need functions in c?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What is meant by operator precedence?
Why should I use standard library functions instead of writing my own?
Is it acceptable to declare/define a variable in a c header?