What is context in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by errors and debugging?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
How can I list all of the predefined identifiers?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
What are the preprocessor categories?
Who developed c language?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
Can we assign string to char pointer?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
write a 'c' program to sum the number of integer values
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
swapping of two numbers without using third variable using AND and OR operators