what r the cpu registers r ther?
Answer / guest
what kind of a crap question is this. Do u understand any
bit of english grammar. Just correct you'r question first
and then expect for an answer..
Is This Answer Correct ? | 0 Yes | 0 No |
Explain how can you be sure that a program follows the ansi c standard?
write a program to print %d ?
write a program to interchange the value between two variable without using loop
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
What is c standard library?
Taking an example,differentiate b/w loader and linker ?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
What is printf () in c?
how to do in place reversal of a linked list(singly or doubly)?
What is a string?
will u give me old quesrion papers for aptitude for L & t info tech?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }