What is the use of a conditional inclusion statement in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this program statement?
Explain what is a static function?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
When should a type cast not be used?
how memory store byte
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are the standard predefined macros?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
Write a program to reverse a linked list in c.
Explain demand paging.
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?