Define VARIABLE?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap two integers 1 and 32767 without using third variable
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
What is the difference between constant pointer and constant variable?
What is meant by type casting?
How does C++ help with the tradeoff of safety vs. usability?
Is it better to use malloc() or calloc()?
what is Structural oriented language? give some example of this language.....?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
If errno contains a nonzero number, is there an error?
How pointer is different from array?