What is the difference between call by value and call by reference in c?
What does int main () mean?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
to find the closest pair
Which is better oop or procedural?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
c program to print a name without using semicolon
a=5 a=a++/++a
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Difference between constant pointer and pointer to a constant.
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Explain high-order bytes.