Can two or more operators such as
and be combined in a single line of program code?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
How do you determine the length of a string value that was stored in a variable?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is sizeof array in c?
can we initialize all the members of union?
Explain how can type-insensitive macros be created?
What is the mean of function?
Does c have class?
Can you define which header file to include at compile time?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What is register variable in c language?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays