what will be the out put.
#include<stdio.h>
void main()
{
printf("Output:");
printf(1+"vikashpatel");
}//output: ikashpatel
Answer Posted / vikash ycp mumbai feb2010
//output: ikashpatel
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
explain what is a newline escape sequence?
Explain what math functions are available for integers? For floating point?
How can I change their mode to binary?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is malloc() function?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is an expression?
What are 3 types of structures?
What is bubble sort in c?
Explain what are the standard predefined macros?
How can I read and write comma-delimited text?
What does sizeof return c?
Why is c still so popular?