|
Question |
Rating |
View Answer |
|
What is a macro, and how do you use it? |
|
View Answer |
|
What is the difference between compile time error and run time error?
|
|
View Answer |
|
How to perform addition,subtraction of 2 numbers without using addition and subtraction operators? |
|
View Answer |
|
What will the preprocessor do for a program? |
|
View Answer |
|
What is modular programming? |
|
View Answer |
|
Can anyone please tell me about a website from which I could install Turbo C (compiler) for free?? |
|
View Answer |
|
Tell me answer for this statement printf("printf("aim")");
|
|
View Answer |
|
How to find a given number is armstrong number or not in "c".?
|
|
View Answer |
|
How do you write a program which produces its own source code as its output?
|
|
View Answer |
|
What will print out?
main() { char *p1=“name”; char *p2; p2=(char*)malloc(20); memset (p2, 0, 20); while(*p2++ = *p1++); printf(“%sn”,p2);
} |
|
View Answer |
|
How can we use data connectivity in 'c' language? |
|
View Answer |
|
The following variable is available in file1.c, who can access it?:
static int average; |
|
View Answer |
|
Explain about the following: 1.problem identification 2.task analysis 3.data analysis 5.decision input & output 6.development algorithm 7.program cooling
|
|
View Answer |
|
When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)? |
|
View Answer |
|
what is the difference between int and long int in C |
|
View Answer |
|
What is #line used for?
|
|
View Answer |
|
Define structural language and procedural language? |
|
View Answer |
|
Can we execute printf statement without using semicolan? |
|
View Answer |
|
What are the standard predefined macros? |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { char *p1; char *p2;
p1=(char *)malloc(25); p2=(char *)malloc(25);
strcpy(p1,”Cisco”); strcpy(p2,“systems”); strcat(p1,p2);
printf(“%s”,p1);
}
|
|
View Answer |