why do some people write if(0 == x) instead of if(x == 0)?
No Answer is Posted For this Question
Be the First to Post Answer
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
Can the curly brackets { } be used to enclose a single line of code?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
Explain what header files do I need in order to define the standard library functions I use?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
write a c program to store and print name,address,roll.no of a student using structures?
Is it possible to run using programming C for Java Application?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
What is the scope of static variable in c?
what is mallloc()?how it works?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?