Differentiate between the = symbol and == symbol?
No Answer is Posted For this Question
Be the First to Post Answer
How can I convert integers to binary or hexadecimal?
Is c an object oriented programming language?
how to set Nth bit of a variable?
what are non standard function in c
Is it possible to have a function as a parameter in another function?
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
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
How can I read/write structures from/to data files?
What is the use of function in c?
Why is sprintf unsafe?