How do you view the path?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the magic square
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write a program to swap two numbers without using the third variable?
Why is c platform dependent?
Can a variable be both constant and volatile?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
how can use subset in c program and give more example
What is structure in c definition?
How macro execution is faster than function ?
what is mallloc()?how it works?
Which is the memory area not included in C program? give the reason