what is the most appropriate way to write a multi-statement
macro?
Explain how can I prevent another program from modifying part of a file that I am modifying?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is external variable in c?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
Why is struct padding needed?
which operator is known as dummy operator in c?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is a ternary operator in c?
What is scanf () in c?