C :: How To Get Current Weekday

Aug 31, 2014

I'm new in C and I want to know how to get the current weekday where sunday=0, monday=1,...,.(using time.h if possible)/I want to do something like

Code:

#include<stdio.h>
#include<time.h>
int main(void)
{

[Code]....

View 3 Replies


ADVERTISEMENT

C++ :: Show Weekday For Given Year

Jan 23, 2013

I have been given an assignment which I have big troubles with. The assignment is:

"If I ask you “When is the weekday of the 2nd of August in 1429?”, you can answer immediately with your program to my question.

The initial value for the 1st of January in (the year) 1 will be sought by inducing, for example the crucifixion of Jesus is said to be held on Friday, the 3rd of April, AD 33."

How can I solve this?

View 3 Replies View Related

C# :: The Name Does Not Exist In Current Context?

Feb 27, 2015

I am new to GUI programming, I am using mono winforms

using System.Windows.Forms;
using System.Drawing;
using System.IO;

[Code]...

I tried sw.WriteLine(this.to.Text); but that did not work

View 4 Replies View Related

C++ :: Program To Display AM/PM With Current Time?

Feb 14, 2013

I'm trying to display the AM/PM on my program:

Also is there a way to display the time only instead of the date? How will i change the program to display the time in standard 12 hours, instead of 24 hours?

#include <iostream>
#include <time.h>
using namespace std;
int main()
{
time_t tim;
time(&tim);
cout << ctime(&tim);
}

View 1 Replies View Related

C++ :: How To Get The Current Video Mode In Console

Apr 2, 2014

I've been wondering if there's a function or procedure used to know the current video mode. An example of how this was done in Pascal:

function VideoMode : integer;
begin
if (lastmode = BW40) or (lastmode = BW80)
VideoMode := 40
else
VideoMode := 80;
end;

I've been told "conio.h" has a lastmode function, but it doesn't seem to be supported in Dev-C++ and Visual Studio C++. Is there a Windows function to know the number of columns in the current video mode?

View 1 Replies View Related

C++ :: Adding Current Date To The End Of A String

Dec 12, 2014

I need to add the current date to the end of a string but I only need to add the day and not the year or month.

Put the code This is what i have

char date[9];
_strdate(date);
cout << date << endl;

View 1 Replies View Related

C++ :: Write A Program That Gives Current Calendar

Jan 14, 2014

I have a problem. I want to write a program that gives me the current calender for example like this:

June 2009

Su Mo Tu We Th Fr Sa
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

and I shouldn't use windows.h

View 2 Replies View Related

C# :: Getting Current Mouse Position In WPF Application?

Feb 27, 2015

I have set a variable as follows:

Point clickLocation = new Point(0, 0);

But when I got to use

clickLocation = Cursor.Position;

It gives me an error of position does not exist? Does WPF not support this way?

View 8 Replies View Related

C# :: The Name (contentGrid) Does Not Exist In The Current Context

Sep 16, 2014

This is the code:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;

[code]....

I am using Visual Studio 2013.i was writing my first code for Windows in C#.I had got everything all right but Visual studio keeps showing me the problem that The name 'contentGrid' does not exist in the current context.I have tried Everything I could think of.I recentered the app to Windows 8.1.

View 2 Replies View Related

C/C++ :: Get Current Time And Write It To A File?

Jul 19, 2013

i have to write the current time to a file ?how to do it

View 2 Replies View Related

Visual C++ :: Getting Name Of Current Save File?

Oct 10, 2014

When I have loaded a savefile with Serialize, is there some way of telling the name of the currently loaded savefile?

View 2 Replies View Related

C++ :: School Project - Getting Current Date And Time

Dec 30, 2014

I am doing a school project. The project basically is that it records the in and out time of an employee(of an particular company).The employee while checking in or out should enter a unique key generated specially for him so that no one else can check in and out for him.Then referring to the employees position( A worker or a manager or something like that) his total working time each day , for a week and a month is calculated. The company starts at 8 am and ends at 5 pm for 1st shift and for second shift from 3.30 pm to 2.30 am. Plus Saturday and Sunday off. Then after a month the program refers to the working time date stored in a file and calculates his pay(For workers its per hour salary and for managers it aint).

If an employee is consistently late the details are forwarded to the HR account( so that necessary steps are taken).This will support the company log the details of their employees duty time plus give enough detail to take action if someones always late. I'm doing this as a school project and it needn't be of enterprise class and all.. But i want the coding to perform as it should. Also i'm forced to use the old Turbo C++. Now i'm struck in the place where the time of the employees in and out time is logged. This coding does the work

Code:
void main( ) {
clrscr();
char dateStr [9],timeStr [9];
_strdate( dateStr);
cout<<" The current date is "<<dateStr<<'

[Code] ....

I think the second one is better as it not only gives me date but also gives me the day so i can check easily for the weekends. So, how these time functions work.

View 1 Replies View Related

C++ :: Output Only Few Files Using Regex From Current Directory

Nov 20, 2013

I'm trying to output only a few files, using regex, from the current directory, this is my main code:

Code:
// main.cpp
{
char * _dir = new char[MAX_PATH];
getcwd(_dir, MAX_PATH);
unique_ptr<CExtractor> _ptr(new CExtractor(_dir));
delete[] _dir;
}

Code:
// CExtractor.cpp
DIR *pdir = NULL;
struct dirent *pent = NULL;
pdir = opendir(_cwd.c_str());
while ((pent = readdir(pdir)) && (pent->d_type != DT_DIR)) {
if (regex_match(pent->d_name, regex(".(in|txt)$"), std::regex_constants::icase)) {
cout << pent->d_name << endl;
}
}
closedir(pdir);

My code is compiled correctly, but when I run my binary, nothings is outputed..here are my files in the current directpory:

aclocal.m4 config.guess config.status depcomp m4 NEWS
AUTHORS config.h config.sub INSTALL Makefile README
autom4te.cache config.h.in configure install-sh Makefile.am src
ChangeLog config.h.in~ configure.ac libtool Makefile.in stamp-h1
compile config.log COPYING ltmain.sh missing

I have a few "in" files

View 1 Replies View Related

C :: Printing Current TIME At Regular Intervals

Aug 22, 2013

Its a code in module of my program, where I need to print current time (HH:MM:SS) at regular intervals.

Code:
#include<time.h>
#include<stdio.h>
//#include<windows.h>
void delay(unsigned int t){ // loop for some delay.

[Code] ....

But when I am running this code I expect this to print difference in time due to delay. But it doesn't enter the delay loop, why ?

View 5 Replies View Related

C++ :: Numbers Game - Store Current Low Number

Dec 14, 2013

I have a program that stores current a low numbers. The Object is to Store the low number every time time one is presented. so say I start the function the first number is the low number. but the trouble im having it once the function is called again it starts over(low number). Is there a way I can keep the function value once the function is called again? Any better way of doing this while keeping function in a class?

double a;
class rff{
public:
void FGH() {
doubleb=0;
cout<< "pick a number"<<endl;

[Code] ....

View 1 Replies View Related

C/C++ :: Assigning Current Date To Integer Values

Sep 26, 2014

How can i assign current date as integer ?

for example:

today's date 26 Sep 2014 on a computer
i try to make as below
int day=26
int moth=9
int year=2014

I also research i think i will use time.h library surely

View 3 Replies View Related

C Sharp :: How To Show Only Current Entry In DataGridView

Apr 12, 2012

When I am filling a Application form and save this Application form Entries in database it saved successfully but below Application form in DataGridView How to show only current Entry row; There is not show a previous Entries in DataGridView?

View 1 Replies View Related

C Sharp :: Input String Was Not In Current Format?

Nov 18, 2012

error is giving.

int ages = 0;
ages = int.Parse(textBox2.Text);  
if(textBox2.Text == "")
{
MessageBox.Show("Age Blank  ......");  
}
else if (ages >= 5 || ages <= 9)
{
MessageBox.Show("age must be 5 to 9 only");
}

View 1 Replies View Related

C Sharp :: Get Current Datetime On Nullable Sql Field?

Jun 28, 2012

I retrieve a null value from a nullable sql datacolumn but when I pull it into a property it automatically gets the current datetime.

How will I go about making sure that this value returns a null and not the currentdatetime.

View 1 Replies View Related

Visual C++ :: Outlook MAPI Get Current Profile Name

May 5, 2014

I have a MAPI session that is loged on and valid, I would like to get the current logged on profile string from it.

View 2 Replies View Related

C++ :: Summation Of Numbers In Current And Previous Iterator

Jul 9, 2012

Below is the sample of the code :

int summation = 0;
for (it= s.begin(); it!= s.end(); ++it) {
summation += std::atoi( ((*it).substr( 8 )).c_str() );
}

Nos after the first 8 characters are the ones I need to perform addition on.

do the summation of these nos.

View 14 Replies View Related

C++ :: Comparing Images In Current Directory And Sub-directories

Jun 4, 2012

I am currently working on a program that will take an image and compare it with all other images in the current directory and sub-directories. I decided to use Qt for this as Qt has a QImage class with an overloaded == operator. This seems to work well if there are duplicates of the same size.

However, my goal is to not only find duplicate images of the same size, but the same image which may be a different size. To do this, I shrink the larger image to the size of the smaller image using the QImage scaled function.

The concern I have with this is that the scaling isn't done the same way the smaller image may have been scaled. I tested this by shrinking a copy of a picture in Paint, that image does not get deleted. I believe that == is looking for an identical image, so when I do the shrinking (via that scaled function), even if it is of the same picture I shrunk in Paint, the two methods of shrinking are not identical, and so the images appear different.

Any better method I can try? Something that can allow for slight deviations, such as an image being 99% "the same" as another. (I admit here that I will need to define some metric for what "the same" means.) In this case, the method assumes they are "identical" and gets rid of one of them.

The main way I can think of doing this is to go through each image, one pixel at a time. If the two pixels from the different images at the same index are the same, then I can increment a same pixel counter. If this number is 99% (or some other threshold) of the total pixel count, I can make the assumption the images are the same.

View 6 Replies View Related

C++ :: How To Include Path To A Folder From Current Directory

Jun 8, 2012

I've forgotten how to include a path to a folder from my current directory!

I mean, instead of loading my dice images as "dice6.png", I'm trying to load them from a file, as ".Imagesdice6.png"

Not sure why, but this isn't working. Google searching has got me nowhere.

View 1 Replies View Related

C++ :: Incorporate Button Into Current Program That Opens Up Calculator?

Nov 10, 2013

I want to incorporate a button into my current program that opens up a calculator in a different window. I have the code for the calculator and the program. I have never worked with buttons or windows.

View 4 Replies View Related

C/C++ :: Save The Current Date And Time Into A Char Array?

Jan 14, 2015

I am trying to use to save the current date and time into a char array using this code:

char current_time(char *date){
time_t result = time(NULL);
date = ctime(&result);
return *date;
}
main{

[Code]...

now when I output the date char array into a txt file I only get gibberish.

View 6 Replies View Related

Visual C++ :: Menu Item To Explore Current Path

Feb 21, 2015

I quite often use an ide written in assembler: RadAsm3[URL] .....

It has a menu item to explore current path. I have used other ide's that have a similar feature but:

The one in RadAsm3 will activate a current Explorer window if the current path is the same as the one requested.
All others open a new Explorer window.

I would like to implement the RadAsm3 approach using Visual Studio 2013 Community c++ as my host compiler for testing.

I tried to get the title of current windows but it appears ShellExecute "explore" does not produce a conventional window???

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved