What is the purpose of void pointer?
No Answer is Posted For this Question
Be the First to Post Answer
In C, What is the #line used for?
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]
Is c pass by value or reference?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Tell me what are bitwise shift operators?
Why doesnt the call scanf work?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
char ch=10;printf("%d",ch);what is the output
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
How can I send mail from within a c program?
Can the sizeof operator be used to tell the size of an array passed to a function?