Why are algorithms important in c program?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a multi-statement macro?
code for reverse alternate words from astring
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
how can make variable not in registers
Explain what is the difference between declaring a variable and defining a variable?
How do I round numbers?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }