What is the deal on sprintf_s return value?
No Answer is Posted For this Question
Be the First to Post Answer
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
program to find the roots of a quardratic equation
write a program whose output will be- 1 12 123 1234
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
which one low Priority in c? a)=,b)++,c)==,d)+
How to receive strings with spaces in scanf()
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
What is scope rule in c?
Write a program to swap two numbers without using third variable in c?