how to print a statement in c without use of console
statement ,with the help of if statement it should print
Answer Posted / deepanshu kakkar
#include<stdio.h>
void main()
{
if(printf("deepanshu kakkar"));
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the difference between procedural and declarative language?
Explain how can you tell whether a program was compiled using c versus c++?
Explain what are run-time errors?
Which is the memory area not included in C program? give the reason
Explain that why C is procedural?
Explain what header files do I need in order to define the standard library functions I use?
What is gets() function?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
Explain what are the __date__ and __time__ preprocessor commands?
Can we increase size of array in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
How can I find the modification date and time of a file?
Explain what are preprocessor directives?