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 |
How would you sort a linked list?
how to convert an char array to decimal array
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
Write a program of prime number using recursion.
Why doesnt long int work?
why return type of main is not necessary in linux
How can I access an I o board directly?
2. What does static variable mean?
program for swapping two strings by using pointers in c language
pierrot's divisor program using c or c++ code
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?