what is difference between ANSI structure and C99 Structure?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
How can variables be characterized?
application attempts to perform an operation?
who will call your main function in c under linux?
Explain the difference between ++u and u++?
Write a program that can show the multiplication table.
What is the difference b/w main() in C language and main() in C++.
where do we use volatile keyword?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What is NULL pointer?
How many parameters should a function have?