send me the code of flow chart generator using C-programming
language amd this code should calculate the time and space
complexity of the given progran and able to generate
flowchart according to the given program?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find biggest of 3 number without relational operator?
Write a program to generate prime factors of a given integer?
#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); }
Can variables be declared anywhere in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain what are multibyte characters?
Are there any problems with performing mathematical operations on different variable types?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
What's the right way to use errno?
What is string function in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................