Why is event driven programming or procedural
programming, better within specific scenario?
No Answer is Posted For this Question
Be the First to Post Answer
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
How do you write a program which produces its own source code as output?
What is the difference between malloc() and calloc() function in c language?
Explain what is the difference between far and near ?
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
can we print any string without using terminator?
How can I find the modification date of a file?
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
The statement, int(*x[]) () what does in indicate?
When should the volatile modifier be used?