What does d mean?
What are the advantages of Macro over function?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
How many types of sorting are there in c?
how to add our own function in c library please give details.?
What is a Genralised LInked List?? Please give a detailed explation of it..
What is the right type to use for boolean values in c?
What is far pointer in c?
What is %lu in c?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Write a program for Overriding.
Describe static function with its usage?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?