What is a struct c#?
No Answer is Posted For this Question
Be the First to Post Answer
What is d'n in c?
Hai why 'c' is the middle language
How do you access command-line arguments?
Which programming language is best for getting job 2020?
How main function is called in c?
How can you access memory located at a certain address?
difference between c and c++
What is a macro in c preprocessor?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
How does pointer work in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
where do we use volatile keyword?