Is it possible to use curly brackets ({}) to enclose single line code in c program?
No Answer is Posted For this Question
Be the First to Post Answer
What is c standard library?
Is it better to bitshift a value than to multiply by 2?
How is a macro different from a function?
Can you please explain the difference between strcpy() and memcpy() function?
How do you define structure?
What does volatile do?
What is build process in c?
Add Two Numbers Without Using the Addition Operator
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
code for inverse a matrix
how to find anagram without using string functions using only loops in c programming
What is a far pointer?What is the utility?