How can I remove the trailing spaces from a string?
What is a static variable in c?
how to add two numbers without using arithmetic operators?
main() { int a[10]; printf("%d",*a+1-*a+3); }
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Explain how does flowchart help in writing a program?
whether itis a structured language?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
what is the definition of storage classes?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd