Multiply an Integer Number by 2 Without Using Multiplication Operator
No Answer is Posted For this Question
Be the First to Post Answer
Are comments included during the compilation stage and placed in the EXE file as well?
What is a Genralised LInked List?? Please give a detailed explation of it..
Can a variable be both static and volatile in c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
While(1) { } when this loop get terminate is it a infinite loop?
Implement bit Array in C.
What does %c mean in c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain what is the use of a semicolon (;) at the end of every program statement?