how to make program without <> in library.
Answer / gandhi priyank
hello
and your answer is a very easy you can write c progaram
then you can write libary #include<stdio.h> insted of
#include"stdio.h"
| Is This Answer Correct ? | 16 Yes | 3 No |
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
What is the purpose of void pointer?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
How can I increase the allowable number of simultaneously open files?
What is atoi and atof in c?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
Can I initialize unions?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
wtite a program that will multiply two integers in recursion function
What is the purpose of the statement: strcat (S2, S1)?