What is a nested loop?
No Answer is Posted For this Question
Be the First to Post Answer
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
What are predefined functions in c?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
what is the full form of c language
Write a program in c to input a 5 digit number and print it in words.
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
write a program to check whether a number is Peterson or not.
What are the modifiers available in c programming language?
write a program to print largest number of each row of a 2D array
In C language what is a 'dangling pointer'?
who is the father of c
Explain modulus operator.