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
What are different types of pointers?
Explain what is the difference between text files and binary files?
what is diognisis?
cavium networks written test pattern ..
What are the various topologies? Which one is the most secure?
What is the equivalent code of the following statement in WHILE LOOP format?
how to find out the union of two character arrays?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
a 'c' program to tell that the set of three coordinates lie on a same line
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What type of function is main ()?