void main()
{
int i=5;
printf("%d",i+++++i);
}
Post New Answer View All Answers
What does != Mean in c?
Is it possible to initialize a variable at the time it was declared?
Where in memory are my variables stored?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Can we replace the struct function in tree syntax with a union?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
What is the size of a union variable?
Explain the difference between strcpy() and memcpy() function?
How do you construct an increment statement or decrement statement in C?
explain what is a newline escape sequence?
What is dangling pointer in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the difference between declaring a variable and defining a variable?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is an array in c?