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
Write a program to print fibonacci series using recursion?
Can you apply link and association interchangeably?
Why n++ execute faster than n+1 ?
What is #pragma statements?
Difference between MAC vs. IP Addressing
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Are the variables argc and argv are local to main?
Tell me what is null pointer in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Can we replace the struct function in tree syntax with a union?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
can we change the default calling convention in c if yes than how.........?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Explain how can I make sure that my program is the only one accessing a file?
What is the difference between array and structure in c?