why programs in c are running with out #include<stdio.h>?
some warnings are display in terminal but we execute the program we get answer why?
eg:
main()
{
printf("hello world
");
}
No Answer is Posted For this Question
Be the First to Post Answer
can we write a program in c for printf and scanf without using header file stdio.h
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What are nested functions in c?
What is the difference between a string and an array?
How will you allocate memory to a double pointer ?
hi how to convert program from notepad to turboc editor can u please help me
largest Of three Number using without if condition?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How can a number be converted to a string?
What is volatile variable in c with example?