What is sizeof array in c?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between new and malloc(), delete and free() ?
a=5 a=a++/++a
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Explain in detail how strset (string handling function works )pls explain it with an example.
When should the const modifier be used?
What are types of preprocessor in c?
What does 1f stand for?
Write a Program to find whether the given number or string is palindrome.
2. What does static variable mean?
out put of printf(ā%dā,printf(ram));
How do you convert strings to numbers in C?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }