What are linked lists in c?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What does #pragma once mean?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
write a c programme for add of two numbers with out use of arthematic operators
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
how do we remove the printed character in printf statement and write next it it
what is the diffrenet bettwen HTTP and internet protocol
How to draw the flowchart for structure programs?
What is #include in c?
What are runtime error?
C program to find all possible outcomes of a dice?