Why c language?
No Answer is Posted For this Question
Be the First to Post Answer
how 2 compile & execute c program with out using editor?
code for quick sort?
How to add two numbers without using arithmetic operators?
18 Answers College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,
Can a program have multiple main() functions?
What is this infamous null pointer, anyway?
What is far pointer in c?
Explain the difference between malloc() and calloc() function?
what is compiler
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
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
Can you add pointers together? Why would you?