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


Please Help Members By Posting Answers For Below Questions

Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

667


What is structure padding in c?

628


c program to compute AREA under integral

1811


write a program to concatenation the string using switch case?

1558


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

623






What is the return type of sizeof?

593


What is the use of c language in real life?

530


Are the variables argc and argv are local to main?

789


code for find determinent of amatrix

1517


What is data structure in c language?

604


What is the difference between typedef and #define?

545


In C language, a variable name cannot contain?

745


How are 16- and 32-bit numbers stored?

725


What is linear search?

678


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1857