What tq means in chat?
No Answer is Posted For this Question
Be the First to Post Answer
C program code 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
Write program to remove duplicate in an array?
what are the difference between ANSI C and Let Us c and Turbo C
Explain the differences between public, protected, private and internal.
What are the two types of structure?
How do you define a function?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
What are the advantages of c language?
Explain a pre-processor and its advantages.
What is spark map function?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Who developed c language?