There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a way to jump out of a function or functions?
Write the control statements in C language
Write a program for print infinite numbers
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is the exact difference between '\0' and ""
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is the use of typedef in structure in c?
What does main () mean in c?
write a program without using main function?