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 |
What is meant by gets in c?
Explain how do you list a file’s date and time?
What is a struct c#?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
What are the types of type specifiers?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
what's the return value of malloc()
What is pivot in c?
What is selection sort in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?