How are strings stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
Who developed c language?
whats the use of header file in c?
What is unary operator?
If errno contains a nonzero number, is there an error?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How to add two numbers with using function?
what is a stack
What are the data types present in c?
What is the deal on sprintf_s return value?
#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
What is the concatenation operator?
Why functions are used in c?