what is the difference between north western polytechnique university and your applied colleges??
please give ur answers for this. :)
No Answer is Posted For this Question
Be the First to Post Answer
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Do you know what is the purpose of 'extern' keyword in a function declaration?
Write a program to print factorial of given number using recursion?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
prog for 1st five prime numbers in 2^x - 1
What is const and volatile in c?
How to implement a packet in C
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Is that possible to add pointers to each other?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Explain what is wrong with this program statement? Void = 10;