Is c compiled or interpreted?
No Answer is Posted For this Question
Be the First to Post Answer
what is C?
Meaning of () in c
C program to find frequency of each character in a text file?
What is %d used for?
In how much time you will write this c program? Prime nos from 1 to 1000
What will happen when freeing memory twice
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Determine if a number is a power of 2 at O(1).
Is fortran still used in 2018?
write a program for fibonaci series by using while loop in c?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;