How to write a multi-statement macro?
No Answer is Posted For this Question
Be the First to Post Answer
what is a c-language.what is do.
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
What is a void pointer in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
How to add two numbers with using function?
What is a buffer in c?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What does a run-time "null pointer assignment" error mean?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Write a program to accept a character & display its corrosponding ASCII value & vice versa?