what are # pragma staments?
No Answer is Posted For this Question
Be the First to Post Answer
Is double link list a linear data structure? If Yes, Why?If No, Why?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
what is the difference between definition and declaration? give me some examples.
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
What are pointers in C?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
what is the hardware model of CFG( context free grammar)
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
What do you mean by a sequential access file?
how to build a exercise findig min number of e heap with list imlemented?