How can I manipulate strings of multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
Which command is more efficient? *(ptr+1) or ptr[1]
What is pointer to pointer in c language?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What is structure padding & expalain wid example what is bit wise structure?
When we use void main and int main?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
how logic is used
Can we declare a function inside a function in c?
How can I allocate arrays or structures bigger than 64K?
When should a type cast be used?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
what does keyword ‘extern’ mean in a function declaration?