What is the purpose of sprintf() function?
No Answer is Posted For this Question
Be the First to Post Answer
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
What is sizeof array in c?
How do you write a program which produces its own source code as its output?
Do variables need to be initialized?
What are preprocessor directives?
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
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
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 a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
how to reverse string "Hello World" by using pointers only. Without any temp var
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
Is double link list a linear data structure? If Yes, Why?If No, Why?