what is develop in c language
Answers were Sorted based on User's Feedback
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
write the program to find multiplication of 2-D matrix??????????
What is an anonymous union and where to apply that ?
Identify the operators that is not used with pointer a. && b. # c. * d. >>
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is difference between declaring the pointer as int and char in c language?
what is the hardware model of CFG( context free grammar)
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?