What is spaghetti programming?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me with an example the self-referential structure?
What is the scope of global variable in c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Write a program to show the workingof auto variable.
Is c object oriented?
Why void main is used in c?
What is a const pointer?
Is linux written in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Is c language still used?
What is a substring in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }