Ads
Related Tutorials/Questions & Answers:
C,C++
C,
C++ Sir,
100&30 gives output 4 in
C++ and
100|30 gives output 116
How & and | gives output 4 and 116
C,C++
C,
C++ int i=100,j=20;
int
c=i&j;
int r=i|j;
printf("%d",
c);
printf("%d",r);
#include<stdio.h>
#include<conio.h>
void main(){
int i=100,j=20; int
c=i&j; int r=i|j;
printf("%d",
c);
printf("%d",r
Advertisements
basic c/c++ questions
basic
c/
c++ questions Are the Control statements like if(),while() in built functions?
if no, why not as they satisfy all the properties of a function
basic c/c++ questions
basic
c/
c++ questions Are the Control statements like if(),while() in built functions?
if no, why not as they satisfy all the properties of a function
C/C++ QUESTIONS
C/
C++ QUESTIONS â??Write a function for finding out the occurences of repeated word from a sentence. This
function would return an array of duplicate words.â
C/C++ QUESTIONS
C/
C++ QUESTIONS "Write a function for finding out highest and lowest marks obtained by a student from an
array contained student name and marks".
For Example :
GetHighestLowestMarks{Student{n}, Marks{n}} returns
C/C++/JAVA Question on function
C/
C++/JAVA Question on function "Write a function to find out common... other data type also.�
Question can be solved in
C,
C++ or JAVA.
(Recommneded -
C
ModuleNotFoundError: No module named 'C-C-Py'
ModuleNotFoundError: No module named '
C-
C-Py' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
C-
C-Py'
How to remove the ModuleNotFoundError: No module named '
C-
C-Py'
Ask C/C++ Questions online
Ask
C/
C++ Questions online
C and
C++ are different programming language, but both the languages are popular among programmers.
C is a general
Java - Continue statement in Java
languages
such as
C,
C++, java etc. Sometimes we do not need to execute some...;
}
Then the program will generate a error on compile time like :
C... like :
C:\chandan>javac Continue.java
C:\chandan>
Message Expressions and comments
;
Like
C and
C++ objective-
C provides comments.
Programmer...-
C
Message expressions are enclosed in square brackets as given below:
[receiver...
Like
C and
C++ comments // and /*- - - - */ are
allowed.
For example
Learn Java in 24 hours
and programmers having knowledge of
C,
C++. They can have a basic idea for Java
language within 24 hours as Java is based on
C and
C++ language. Most of the
syntax of Java are similar to that of
C and
C++ so developers don't find
Nirvana
Nirvana
Nirvana is an open source email client written in Java,
C, and
C++. It is coded using SWT and SwingWT. The first in it's class. Nirvana
combines SWT's
Learning Java Programming for Beginners
Java is an Object Oriented Programming Language that was developed by Sun
Microsystems. It is based on
C,
C++ programming language but a tad better then
them. It is more secure and simple to work on. Also the program written in Java
Continue statement in java
Continue statement in java
In this section we will discuss about continue statement in
java. continue is one of the branching statement used in most of the programming
languages like
C,
C++ and java etc. Sometime we need to skip some
Java Break
Java Break
Many programming languages like
c,
c++ uses the "break"
statement. Java also use this statement when we need to exit from a loop
before the completion
Java tutorial for beginners
on the basis of
C and
C++ but is more advanced,
simple, robust and easy to learn... it to run on any platform or operating system. This
is because when
C converts
Java Get Memory Usage
Java Get Memory Usage
If you have prior worked on
C or
C++ language, you must be aware of that
unlike
c++, java don't tell that how much memory
Break statement in java
Break statement in java
Break statement in java is used to change the normal control flow of
compound statement like while, do-while , for. Break statement is used in many
languages such
C,
C++ etc. Sometimes it may
pattern
pattern A
B B
C C C
D D D D
E E E E E
range of int in c
range of int in c What is the range of int in
c/
c++ and Java programming language
my question
my question "Write a
C/
C++ program to show the stored procedure PROCRESETMAIL" on database "USER_NOTIFY
my question
my question "Write a
C/
C++ program to show the stored procedure PROCRESETMAIL" on database "USER_NOTIFY
about java
about java how to get the value from the user like
c,
c++ program pls explain with example for me
python print dots with printf style
python print dots with printf style Hi,
There is printf function in
c and
c++. How to use same system function python? I want program in python thats print dots with printf style.
Thanks