What are the different data types in C?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
What do you mean by keywords in c?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What are the differences between new and malloc in C?
what are advantages of U D F?
Is using exit() the same as using return?
Name the language in which the compiler of "c" in written?
whitch value return void main?
What are the different types of constants?
c program to print a name without using semicolon
What is binary tree in c?
What type of function is main ()?