What is keyword with example?
No Answer is Posted For this Question
Be the First to Post Answer
How to delete a node from linked list w/o using collectons?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What happens if a header file is included twice?
What is a example of a variable?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Is c language still used?
What is the benefit of using #define to declare a constant?
What is a spanning Tree?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
All technical questions
What is function prototype in c language?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }