what value is returned to operating system after program
execution?
No Answer is Posted For this Question
Be the First to Post Answer
How does sizeof know array size?
What standard functions are available to manipulate strings?
Are there any problems with performing mathematical operations on different variable types?
Explain do array subscripts always start with zero?
What is structure padding and packing in c?
why we are using float in C
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?
what is the difference between NULL('\0') and 0?
int far *near * p; means
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
what is the difference between #include<stdio.h> and #include "stdio.h" ?