What is string function in c?
what is the structure?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
how to build a exercise findig min number of e heap with list imlemented?
Why c is called top down?
What is printf () in c?
What are header files? What are their uses?
What functions are in conio h?
How can I change their mode to binary?
In a switch statement, what will happen if a break statement is omitted?
How can I remove the leading spaces from a string?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?