How are strings stored in c?
print the palindrome numbers in between 0 to n
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
How to develop software using "c" programming?
what is the difference between i++ and ++i?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
program for validity of triangle from 3 side
. Explain the differences between fork() and exec() in C
What are the standard predefined macros?
What are the 4 types of unions?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why clrscr is used in c?
What is string function c?