What is c programing language?
How do we declare variables in c?
how to swap 2 numbers in a single statement?
Write a program for finding factorial of a number.
code for inverse a matrix
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
please give code for this 1 2 4 7 11 16
What is the difference between procedural and functional programming?
write a 'c' program to sum the number of integer values
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What is an array? What the different types of arrays in c?
What is printf () in c?
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.