print ur name without using any semicolon in c/c++....
Answer Posted / deepjoy das
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Deep"))
{
}
}
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain how can you restore a redirected standard stream?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
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.
How reliable are floating-point comparisons?
Where static variables are stored in c?
Explain what is a pragma?
What are the 5 data types?
What do you mean by dynamic memory allocation in c?
Can you tell me how to check whether a linked list is circular?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is structure in c language?
Explain what is wrong in this statement?
What does the file stdio.h contain?
What is return type in c?