how to make program without <> in library.



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

Post New Answer

More C Interview Questions

void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


write a string copy function routine?

2 Answers  


what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


how to use virual function in real time example

1 Answers   CTS, Wipro,


Can we assign string to char pointer?

0 Answers  






Why isnt any of this standardized in c?

0 Answers  


WHAT IS HEADER?

8 Answers   ProKarma, TCS,


What is wrong in this statement? scanf(“%d”,whatnumber);

0 Answers  


simple program of graphics and their output display

0 Answers   Elysium,


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

6 Answers   TCS, Wipro,


When should structures be passed by values or by references?

0 Answers   Adobe,


How does normalization of huge pointer works?

0 Answers  


Categories