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 about block scope in c?
What is the ANSI C Standard?
What is graph in c?
program to convert a integer to string in c language'
What is bubble sort technique in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What are the standard predefined macros?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is const and volatile in c?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the difference between a free-standing and a hosted environment?
What is main () in c?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How many keywords (reserve words) are in c?